Skip to content

Commit 2a48b7f

Browse files
committed
Add flake8 config
While I don't intend to check this automatically, it's nice to have this config to avoid clashes with Black.
1 parent 6d45a2d commit 2a48b7f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.flake8

+7
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)