2
0

pylintrc 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. [MASTER]
  2. [MESSAGES CONTROL]
  3. # Disable the message, report, category or checker with the given id(s). You
  4. # can either give multiple identifiers separated by comma (,) or put this
  5. # option multiple times (only on the command line, not in the configuration
  6. # file where it should appear only once). You can also use "--disable=all" to
  7. # disable everything first and then reenable specific checks. For example, if
  8. # you want to run only the similarities checker, you can use "--disable=all
  9. # --enable=similarities". If you want to run only the classes checker, but have
  10. # no Warning level messages displayed, use "--disable=all --enable=classes
  11. # --disable=W".
  12. disable=consider-using-f-string,
  13. fixme,
  14. missing-docstring,
  15. too-many-arguments,
  16. too-many-branches,
  17. too-many-instance-attributes,
  18. too-many-positional-arguments,
  19. too-many-statements,
  20. useless-option-value,
  21. [REPORTS]
  22. [REFACTORING]
  23. [MISCELLANEOUS]
  24. [LOGGING]
  25. [BASIC]
  26. # Good variable names regexes, separated by a comma. If names match any regex,
  27. # they will always be accepted.
  28. #
  29. # Suppress complaints about short names. PEP-8 is cool with them,
  30. # and so are we.
  31. good-names-rgxs=^[_a-z][_a-z0-9]?$
  32. [VARIABLES]
  33. [STRING]
  34. [SPELLING]
  35. [FORMAT]
  36. [SIMILARITIES]
  37. # Ignore import statements themselves when computing similarities.
  38. ignore-imports=yes
  39. [TYPECHECK]
  40. [CLASSES]
  41. [IMPORTS]
  42. [DESIGN]
  43. [EXCEPTIONS]