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 0793f3a commit 3253bb5Copy full SHA for 3253bb5
setup.cfg
@@ -0,0 +1,12 @@
1
+[flake8]
2
+max-line-length = 100
3
+exclude = .git
4
+# E731: do not assign a lambda expression, use a def
5
+# W503: line break before binary operator
6
+ignore = E731, W503
7
+
8
+# Make isort play nicely with black's import formatting.
9
+# https://github.com/microsoft/vscode-python/issues/5840
10
+[isort]
11
+multi_line_output = 3
12
+include_trailing_comma = True
0 commit comments