summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-06-06 18:38:52 -0400
committerJason R. Coombs <jaraco@jaraco.com>2022-06-06 19:31:53 -0400
commit255926c335d7718bf19be12c6d02b783af5f3462 (patch)
tree8b4a4f4dff2ec7392df0e996c1384c62f57feeb7
parent4b587edcd0972456b50e2e71225f9212e4aa70c4 (diff)
downloadpython-setuptools-git-255926c335d7718bf19be12c6d02b783af5f3462.tar.gz
Add flake8 config from jaraco/skeleton for compatibility with black.
-rw-r--r--.flake89
1 files changed, 9 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
new file mode 100644
index 00000000..48b2e246
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,9 @@
+[flake8]
+max-line-length = 88
+
+# jaraco/skeleton#34
+max-complexity = 10
+
+extend-ignore =
+ # Black creates whitespace before colon
+ E203