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 60b5352 commit f5b0951Copy full SHA for f5b0951
setup.cfg
@@ -1,5 +1,9 @@
1
[flake8]
2
max-line-length = 120
3
+# F824 `nonlocal x` is unused: name is never assigned in scope
4
+# W503 Line break before a binary operator
5
+# W504 Line break after a binary operator -- https://www.flake8rules.com/rules/W504.html
6
+ignore = F824, W503, W504
7
8
[mypy]
9
warn_unused_ignores = True
0 commit comments