diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-03-07 16:14:01 +0900 |
---|---|---|
committer | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-03-16 15:25:07 +0900 |
commit | cd26f8c729b326623ad72eac5d136c03e01dfbd0 (patch) | |
tree | 0874379106e711a1415c0810fd7526c60a6d61b3 /.pep8 | |
parent | 2b86b42c7fd09f31d8084cf054ed59c229159ca4 (diff) |
inspect: Add settings for pep8 and pylint
This adds the setting files for pep8 and pylint in order to disable
warning messages for the maximum line length:
pep8: "E501" says the maximum line length is 79.
pylint: "line-too-long" says the maximum line length is 99.
Also, this patch disables pylint messages for "invalid-name",
"missing-docstring".
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to '.pep8')
-rw-r--r-- | .pep8 | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -0,0 +1,3 @@ +[pep8] +# E501: Limit all lines to a maximum of 79 characters. +ignore = E501 |