summaryrefslogtreecommitdiffhomepage
path: root/.pep8
diff options
context:
space:
mode:
authorIWASE Yusuke <iwase.yusuke0@gmail.com>2017-03-07 16:14:01 +0900
committerIWASE Yusuke <iwase.yusuke0@gmail.com>2017-03-16 15:25:07 +0900
commitcd26f8c729b326623ad72eac5d136c03e01dfbd0 (patch)
tree0874379106e711a1415c0810fd7526c60a6d61b3 /.pep8
parent2b86b42c7fd09f31d8084cf054ed59c229159ca4 (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--.pep83
1 files changed, 3 insertions, 0 deletions
diff --git a/.pep8 b/.pep8
new file mode 100644
index 00000000..784ed421
--- /dev/null
+++ b/.pep8
@@ -0,0 +1,3 @@
+[pep8]
+# E501: Limit all lines to a maximum of 79 characters.
+ignore = E501