-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Update dependencies and project configuration * chore: Update .ruff.toml file * chore: Update Ruff version to v0.5.6 and run linter and formatter This commit updates the Ruff version to v0.5.6 in the .pre-commit-config.yaml file. It also adds the linter and formatter hooks for Ruff, with the "--fix" argument for the linter. This ensures that the code is properly formatted and follows the linting rules. Note: This message does not include any issue references, tags, or author names. * chore: Update Ruff version to v0.5.6, add linter and formatter hooks, and update dependencies * chore: Update mermaid-py dependencies and add Ruff badge This commit updates the dependencies for mermaid-py and adds a Ruff badge to the README.md file. The Ruff badge provides information about the latest version of Ruff being used in the project. Note: This message does not include any issue references, tags, or author names.
- Loading branch information
1 parent
0fc6b5c
commit 59eca08
Showing
54 changed files
with
1,422 additions
and
1,212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,3 +93,4 @@ db.sqlite3 | |
/site/ | ||
.vscode/* | ||
.vscode/ | ||
.mypy_cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[lint] | ||
mccabe = { max-complexity = 14 } | ||
select = [ | ||
"E", # pycodestyle errors | ||
"W", # pycodestyle warnings | ||
"F", # pyflakes | ||
"I", # isort | ||
"C", # flake8-comprehensions | ||
"B", # flake8-bugbear | ||
] | ||
ignore = [ | ||
"E501", # line too long, handled by black | ||
"B018", # Found useless expression. | ||
] | ||
|
||
[lint.pyupgrade] | ||
keep-runtime-typing = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.