-
Notifications
You must be signed in to change notification settings - Fork 320
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0dac08e
commit 2a92634
Showing
330 changed files
with
28,602 additions
and
11,980 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,30 @@ | ||
[flake8] | ||
exclude = | ||
.git, | ||
__pycache__, | ||
build, | ||
dist | ||
ignore = | ||
# https://flake8.pycqa.org/en/latest/user/error-codes.html | ||
F401, # 'module' imported but unused | ||
# https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes | ||
E121, # continuation line under-indented for hanging indent | ||
E122, # continuation line missing indentation or outdented | ||
E126, # continuation line over-indented for hanging indent | ||
E127, # continuation line over-indented for visual indent | ||
E128, # continuation line under-indented for visual indent | ||
E221, # multiple spaces before operator | ||
E222, # multiple spaces after operator | ||
E226, # missing whitespace around arithmetic operator | ||
E231, # missing whitespace after ',' | ||
E241, # multiple spaces after ',' | ||
E402, # module level import not at top of file | ||
E501, # line too long (> 79 characters) | ||
E722, # do not use bare 'except' | ||
W291, # trailing whitespace | ||
W292, # no newline at end of file | ||
W293, # blank line contains whitespace | ||
W391, # blank line at end of file | ||
W503, # line break before binary operator | ||
W504 # line break after binary operator | ||
statistics = 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
Oops, something went wrong.