Skip to content

Commit e8f4fd5

Browse files
committed
update flake8 config
1 parent b3fae4e commit e8f4fd5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.flake8

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
[flake8]
2-
ignore = E203, W503
2+
# Ignore
3+
# E203: whitespace before `,` `;` or `:`
4+
# E266: too many leading # for block comment
5+
# E501: line too long
6+
# E701: Multiple statements on one line (colon)
7+
# W503: line break after binary operator
8+
ignore = E203, E266, E501, E701, E704, W503
9+
max-complexity = 18

0 commit comments

Comments
 (0)