pylintrc 1.5 KB

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