diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 13:19:31 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-01-19 13:19:31 -0500 |
| commit | 313ac58f51c6ef92170647c4cc8626043f68a26b (patch) | |
| tree | 3556882e26f8d9d36a7010788827657f39039424 /.flake8 | |
| parent | 3d4d8b9dde61b87271861b8c7ebeb168ac4fa72b (diff) | |
| download | python-setuptools-git-313ac58f51c6ef92170647c4cc8626043f68a26b.tar.gz | |
Run flake8 tests as part of test suite.
Diffstat (limited to '.flake8')
| -rw-r--r-- | .flake8 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.flake8 b/.flake8 new file mode 100644 index 00000000..c6580616 --- /dev/null +++ b/.flake8 @@ -0,0 +1,12 @@ +[flake8] +exclude= + .tox + setuptools/_vendor, + pkg_resources/_vendor +ignore = + # W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513 + W503 + # W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545 + W504 + setuptools/site-patch.py F821 + setuptools/py*compat.py F811 |
