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