pylintrc (535B)
1 [MESSAGES CONTROL] 2 3 # Disable the message, report, category or checker with the given id(s). 4 disable=fixme, 5 6 # fixme 7 # This complains about TODOs, which are perfectly valid to have. 8 9 # Suppression for invalid-name error for PRESUBMIT.py file. 10 good-names=i,j,k,f,PRESUBMIT 11 12 [REPORTS] 13 14 reports=no 15 16 [DESIGN] 17 18 # Maximum number of arguments for function / method 19 max-args=6 20 21 # Maximum number of instance attributes 22 max-attributes=10 23 24 [FORMAT] 25 26 max-line-length=80 27 28 [SIMILARITIES] 29 ignore-comments=yes 30 ignore-docstrings=yes 31 ignore-imports=yes