move and update flake8 config

This commit is contained in:
David Lord 2023-01-18 10:31:08 -08:00
parent 8bfc0581e7
commit 99b34f7148
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
6 changed files with 33 additions and 35 deletions

25
.flake8 Normal file
View file

@ -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