1
0
mirror of https://github.com/osrg/gobgp.git synced 2024-05-11 05:55:10 +00:00
Files
osrg-gobgp/.pep8
IWASE Yusuke cd26f8c729 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>
2017-03-16 15:25:07 +09:00

4 lines
76 B
Plaintext

[pep8]
# E501: Limit all lines to a maximum of 79 characters.
ignore = E501