diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2022-06-06 18:38:52 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-06-06 19:31:53 -0400 |
commit | 255926c335d7718bf19be12c6d02b783af5f3462 (patch) | |
tree | 8b4a4f4dff2ec7392df0e996c1384c62f57feeb7 | |
parent | 4b587edcd0972456b50e2e71225f9212e4aa70c4 (diff) | |
download | python-setuptools-git-255926c335d7718bf19be12c6d02b783af5f3462.tar.gz |
Add flake8 config from jaraco/skeleton for compatibility with black.
-rw-r--r-- | .flake8 | 9 |
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 |