flask/.flake8

26 lines
544 B
Text
Raw Normal View History

2023-01-18 09:50:41 -08:00
[flake8]
2023-01-18 10:31:08 -08:00
extend-select =
# bugbear
B
# bugbear opinions
B9
# implicit str concat
ISC
extend-ignore =
2023-01-18 09:50:41 -08:00
# slice notation whitespace, invalid
E203
# line length, handled by bugbear B950
E501
# bare except, handled by bugbear B001
E722
2023-01-18 10:31:08 -08:00
# zip with strict=, requires python >= 3.10
2023-01-18 09:50:41 -08:00
B905
2023-01-18 10:31:08 -08:00
# string formatting opinion, B028 renamed to B907
B028
B907
2023-01-18 09:50:41 -08:00
# up to 88 allowed by bugbear B950
max-line-length = 80
per-file-ignores =
# __init__ exports names
src/flask/__init__.py: F401