We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d45a2d commit 2a48b7fCopy full SHA for 2a48b7f
.flake8
@@ -0,0 +1,7 @@
1
+[flake8]
2
+exclude = .direnv, .env, .venv, venv
3
+ignore =
4
+ E203 # whitespace before ':' (conflicts with Black)
5
+ E501 # line too long (probably right, but if Black let it go, Flake8 should too)
6
+ W503 # line break before binary operator (conflicts with Black)
7
+max_line_length = 88
0 commit comments