-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: streamline code quality (#472)
- raised some dev tools - added more quality checkers and rules - documented and applied additional code standards --------- Signed-off-by: Jan Kowalleck <[email protected]>
- Loading branch information
1 parent
d09ac36
commit bb0f7a5
Showing
35 changed files
with
237 additions
and
219 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[flake8] | ||
## https://flake8.pycqa.org/en/latest/user/configuration.html | ||
## keep in sync with isort config - in `isort.cfg` file | ||
|
||
exclude = | ||
build,dist,__pycache__,.eggs,*.egg-info*, | ||
*_cache,*.cache, | ||
.git,.tox,.venv,venv,.venv*,venv*, | ||
_OLD,_TEST, | ||
docs | ||
|
||
max-line-length = 120 | ||
|
||
max-complexity = 20 | ||
|
||
ignore = | ||
# ignore `self`, `cls` markers of flake8-annotations>=2.0 | ||
ANN101,ANN102 | ||
# ignore ANN401 for dynamically typed *args and **kwargs | ||
ANN401 |
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
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.