Skip to content

Commit

Permalink
inspect: Add settings for pep8 and pylint
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
iwaseyusuke committed Mar 16, 2017
1 parent 2b86b42 commit cd26f8c
Show file tree
Hide file tree
Showing 2 changed files with 410 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .pep8
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[pep8]
# E501: Limit all lines to a maximum of 79 characters.
ignore = E501
Loading

0 comments on commit cd26f8c

Please sign in to comment.