From cd26f8c729b326623ad72eac5d136c03e01dfbd0 Mon Sep 17 00:00:00 2001 From: IWASE Yusuke Date: Tue, 7 Mar 2017 16:14:01 +0900 Subject: 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 --- .pep8 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .pep8 (limited to '.pep8') 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 -- cgit v1.2.3