Exclude venv directories from linting

Exclude venv/ (a common virtualenv name) and bin/,lib/ if the local
directory is configured as a venv.
This commit is contained in:
Dan Smith 2016-02-14 18:23:58 +00:00
parent 8c67a924bc
commit 92a11819b4

View File

@ -5,7 +5,7 @@ universal = 1
testpaths = tests
[flake8]
exclude = .venv,.git,.tox,docs,www_static,tests
exclude = .venv,.git,.tox,docs,www_static,tests,venv,bin,lib
[pep257]
ignore = D203,D105