Check pyflakes rules

This will catch unused vars and unused imports and similar code hygeine
items. Note this doesn't enable the other rules because we are trying to
ignore some and enable others and that doesn't seem doable with the
select/ignore lists.

Change-Id: If88de411bb18b395c3be492c0a6dccec50fe98f2
This commit is contained in:
Clark Boylan 2015-10-01 13:59:57 -07:00 committed by Monty Taylor
parent 68469940e9
commit 04614abf49
1 changed files with 1 additions and 1 deletions

View File

@ -31,6 +31,6 @@ commands = {posargs}
[flake8]
ignore = E123,E125,H
select = H231
select = H231,F
show-source = True
exclude = .venv,.tox,dist,doc,build,*.egg