1
0

.pylintrc 646 B

123456789101112131415161718192021222324252627
  1. [MASTER]
  2. # Add files or directories to the blacklist. They should be base names, not
  3. # paths.
  4. ignore=venv
  5. [BASIC]
  6. # Stick to snake case, but accept setUp and tearDown from unittest
  7. method-rgx=(([a-z_][a-z0-9_]*)|(setUp)|(tearDown))$
  8. [MESSAGES CONTROL]
  9. # Only show warnings with the listed confidence levels. Leave empty to show
  10. # all. Valid levels: HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED
  11. confidence=
  12. disable=
  13. missing-function-docstring,
  14. import-error, # disabled since pre-commit runs pylint in a separate venv
  15. fixme,
  16. consider-using-with
  17. [FORMAT]
  18. # Maximum number of characters on a single line.
  19. max-line-length=120