-
Notifications
You must be signed in to change notification settings - Fork 221
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
Showing
3 changed files
with
30 additions
and
3 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 |
---|---|---|
|
@@ -16,6 +16,7 @@ engines: | |
excluded_paths: | ||
- tests/** | ||
exclude_paths: | ||
- ".flake8" | ||
- "**.md" | ||
- "**.rst" | ||
- "**.pdf" | ||
|
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,25 @@ | ||
[flake8] | ||
extend-select = | ||
# bugbear | ||
B | ||
# bugbear opinions | ||
B9 | ||
# implicit str concat | ||
ISC | ||
extend-ignore = | ||
# slice notation whitespace, invalid | ||
E203 | ||
# line length, handled by bugbear B950 | ||
E501 | ||
# bare except, handled by bugbear B001 | ||
E722 | ||
# zip with strict=, requires python >= 3.10 | ||
B905 | ||
# string formatting opinion, B028 renamed to B907 | ||
B028 | ||
B907 | ||
# up to 88 allowed by bugbear B950 | ||
max-line-length = 80 | ||
per-file-ignores = | ||
# __init__ exports names | ||
src/flask/__init__.py: F401 |
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