-
-
Notifications
You must be signed in to change notification settings - Fork 111
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
47600f6
commit 447b62c
Showing
10 changed files
with
48 additions
and
70 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,15 @@ | ||
[flake8] | ||
|
||
max-line-length = 90 | ||
ignore = | ||
# irrelevant plugins | ||
B3, | ||
DW12, | ||
# code is sometimes better without this | ||
E129, | ||
# consistency with mypy | ||
W504 | ||
exclude = | ||
# tests have more relaxed formatting rules | ||
# and its own specific config in .flake8-tests | ||
src/test_typing_extensions.py, |
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,28 @@ | ||
# This configuration is specific to test_*.py; you need to invoke it | ||
# by specifically naming this config, like this: | ||
# | ||
# $ flake8 --config=.flake8-tests [SOURCES] | ||
# | ||
# This will be possibly merged in the future. | ||
|
||
[flake8] | ||
max-line-length = 100 | ||
ignore = | ||
# temporary ignores until we sort it out | ||
B017, | ||
E302, | ||
E303, | ||
E306, | ||
E501, | ||
E701, | ||
E704, | ||
F722, | ||
F811, | ||
F821, | ||
F841, | ||
W503, | ||
# irrelevant plugins | ||
B3, | ||
DW12, | ||
# consistency with mypy | ||
W504 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
flake8 | ||
flake8-bugbear | ||
flake8-pyi |