diff options
author | Akihiro MOTOKI <motoki@da.jp.nec.com> | 2013-06-10 22:04:56 +0900 |
---|---|---|
committer | Akihiro MOTOKI <motoki@da.jp.nec.com> | 2013-06-17 18:32:54 +0900 |
commit | a5076e620762a5560e694bb10f2c742cff3c57db (patch) | |
tree | 782db7fb00687557ea2e2d43b615930d7d3fad39 /tox.ini | |
parent | 92d9698ceb6cd75782ebae7baa96f511a33b7e26 (diff) | |
download | python-neutronclient-a5076e620762a5560e694bb10f2c742cff3c57db.tar.gz |
Enables H404 check (multi line docstring) in flake8
This commit ensures docstring follows the docstring convention.
Also enables H301 (one import per line) in flake8.
There is already no violation the source codes.
Change-Id: Icf6ce5bae40b2e6492c060a28587d825a1837b43
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -25,10 +25,8 @@ downloadcache = ~/cache/pip [flake8] # E125 continuation line does not distinguish itself from next logical line -# H301 one import per line # H302 import only modules -# TODO(marun) H404 multi line docstring should start with a summary -ignore = E125,H301,H302,H404 +ignore = E125,H302 show-source = true builtins = _ exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools |