We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3fae4e commit e8f4fd5Copy full SHA for e8f4fd5
.flake8
@@ -1,2 +1,9 @@
1
[flake8]
2
-ignore = E203, W503
+# 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