diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-01 16:22:00 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-01 16:22:00 -0400 |
| commit | b3f1198035da5576416f2096ca5e0fa19ca5ccab (patch) | |
| tree | 3f2f789af8f10983ae236719fb3e5dced766cdf3 /setup.cfg | |
| parent | 47612250e00725dc182fe55e1867ebfc1b5d98bf (diff) | |
| download | python-coveragepy-git-b3f1198035da5576416f2096ca5e0fa19ca5ccab.tar.gz | |
Move pycodestyle settings to setup.cfg
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,2 +1,11 @@ [tool:pytest] addopts = -q + +[pep8] +# E265 block comment should start with '# ' +# E266 too many leading '#' for block comment +# E301 expected 1 blank line, found 0 +# E401 multiple imports on one line +# The rest are the default ignored warnings. +ignore = E265,E266,E123,E133,E226,E241,E242,E301,E401 +max-line-length = 100 |
