Skip to content

Commit cd26f8c

Browse files
committed
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 <[email protected]>
1 parent 2b86b42 commit cd26f8c

File tree

2 files changed

+410
-0
lines changed

2 files changed

+410
-0
lines changed

.pep8

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[pep8]
2+
# E501: Limit all lines to a maximum of 79 characters.
3+
ignore = E501

0 commit comments

Comments
 (0)