summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorBrant Knudson <bknudson@us.ibm.com>2015-01-11 18:16:27 -0600
committerBrant Knudson <bknudson@us.ibm.com>2015-01-11 18:17:15 -0600
commitd88401d6f171c7a1001015ceecf725e53932a07b (patch)
tree47035f4e5edb9e6f4523d8b357eedf38ecabccc9 /tox.ini
parenta68636d9bfd1b8388dfcc35e3ba21a2830aae536 (diff)
downloadkeystonemiddleware-d88401d6f171c7a1001015ceecf725e53932a07b.tar.gz
Move to hacking 0.10
Release notes: http://git.openstack.org/cgit/openstack-dev/hacking/tag/?id=0.10.0 H803 is no longer enforced by hacking so the ignore is removed. Change-Id: Ifaf62839a4b6da62a3b380396158b463c1381026
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 5 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 16eb482..404b99e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -32,10 +32,13 @@ downloadcache = ~/cache/pip
commands = oslo_debug_helper {posargs}
[flake8]
+# E122: continuation line missing indentation or outdented
# F821: undefined name
+# H238: old style class declaration, use new style (inherit from `object`)
# H304: no relative imports
-# H803 Commit message should not end with a period (do not remove per list discussion)
-ignore = F821,H304,H803
+# H405: multi line docstring summary not separated with an empty line
+# H703: Multiple positional placeholders
+ignore = E122,F821,H238,H304,H405,H703
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common*