pylintrc 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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-statements,
  19. useless-option-value,
  20. [REPORTS]
  21. [REFACTORING]
  22. [MISCELLANEOUS]
  23. [LOGGING]
  24. [BASIC]
  25. # Good variable names regexes, separated by a comma. If names match any regex,
  26. # they will always be accepted.
  27. #
  28. # Suppress complaints about short names. PEP-8 is cool with them,
  29. # and so are we.
  30. good-names-rgxs=^[_a-z][_a-z0-9]?$
  31. [VARIABLES]
  32. [STRING]
  33. [SPELLING]
  34. [FORMAT]
  35. [SIMILARITIES]
  36. # Ignore import statements themselves when computing similarities.
  37. ignore-imports=yes
  38. [TYPECHECK]
  39. [CLASSES]
  40. [IMPORTS]
  41. [DESIGN]
  42. [EXCEPTIONS]