summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorNavid Pustchi <npustchi@gmail.com>2016-05-03 18:08:31 +0000
committerNavid Pustchi <npustchi@gmail.com>2016-05-04 19:30:03 +0000
commita9adca02dbdbf786dd7015f4d3c67c514d757423 (patch)
tree75ba605bba406d61de5967f49f6b50c5d35b16ec /tox.ini
parente9471bdf4cb96816ff551cde6b6fdc1e9cb00d3e (diff)
downloadpython-keystoneclient-a9adca02dbdbf786dd7015f4d3c67c514d757423.tar.gz
Fixing D204, D205, and D207 PEP257 violation.
Currently tox ignores D204, D205, and D207. D204: 1 blank required after class docstring. D205: Blank line required between one-line summary and description. D207: Docstring is under-indented. This change removes D204, D205, and D207 ignores in tox and fix violations. Change-Id: Id20d216fbd7647d468859b960088aac61c582d9b
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini5
1 files changed, 1 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 16d7a5f..cd26e8f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -49,10 +49,7 @@ passenv = OS_*
# D200: One-line docstring should fit on one line with quotes
# D202: No blank lines allowed after function docstring
# D203: 1 blank required before class docstring.
-# D204: 1 blank required after class docstring
-# D205: Blank line required between one-line summary and description.
-# D207: Docstring is under-indented
-ignore = D100,D101,D102,D103,D104,D105,D200,D202,D203,D204,D205,D207
+ignore = D100,D101,D102,D103,D104,D105,D200,D202,D203
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common*