pylintrc 363 B

12345678910111213141516171819
  1. [MESSAGES CONTROL]
  2. # Disable the message, report, category or checker with the given id(s).
  3. disable=fixme,
  4. # fixme
  5. # This complains about TODOs, which are perfectly valid to have.
  6. # Suppression for invalid-name error for PRESUBMIT.py file.
  7. good-names=f,PRESUBMIT
  8. [REPORTS]
  9. reports=no
  10. [DESIGN]
  11. # Maximum number of arguments for function / method
  12. max-args=6