Skip to content

Commit f93f339

Browse files
committed
update flake8 ignores
1 parent 38df842 commit f93f339

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

setup.cfg

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
# Config goes in pyproject.toml unless a tool doesn't support that.
22

33
[flake8]
4-
# B = bugbear
5-
# E = pycodestyle errors
6-
# F = flake8 pyflakes
7-
# W = pycodestyle warnings
8-
# B9 = bugbear opinions
9-
# ISC = implicit-str-concat
10-
select = B, E, F, W, B9, ISC
11-
ignore =
4+
extend-select =
5+
# bugbear
6+
B
7+
# bugbear opinions
8+
B9
9+
# implicit str concat
10+
ISC
11+
extend-ignore =
1212
# slice notation whitespace, invalid
1313
E203
1414
# line length, handled by bugbear B950
1515
E501
1616
# bare except, handled by bugbear B001
1717
E722
18-
# bin op line break, invalid
19-
W503
18+
# zip with strict=, requires python >= 3.10
19+
B905
20+
# string formatting opinion, B028 renamed to B907
21+
B028
22+
B907
2023
# up to 88 allowed by bugbear B950
2124
max-line-length = 80

0 commit comments

Comments
 (0)