Skip to content

Commit b5a3e71

Browse files
committed
update flake config.
1 parent cb626b7 commit b5a3e71

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.flake8

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,23 @@
55
#########################
66
[flake8]
77
ignore =
8-
S301 # pickle
9-
S403 # pickle
8+
# pickle
9+
S301
10+
S403
1011
S404
1112
S603
12-
W503 # Line break before binary operator (flake8 is wrong)
13-
E203 # Ignore the spaces black puts before columns.
14-
E402 # allow path extensions for testing.
13+
# Line break before binary operator (flake8 is wrong)
14+
W503
15+
# Ignore the spaces black puts before columns.
16+
E203
17+
# allow path extensions for testing.
18+
E402
1519
DAR101
1620
DAR201
17-
N400 # flake and pylance disagree on linebreaks in strings.
18-
S101 # asserts are ok in test.
21+
# flake and pylance disagree on linebreaks in strings.
22+
N400
23+
# asserts are ok in test.
24+
S101
1925
exclude =
2026
.tox,
2127
.git,

0 commit comments

Comments
 (0)