diff --git a/pylint.cfg b/pylint.cfg deleted file mode 100644 index 91f64c4..0000000 --- a/pylint.cfg +++ /dev/null @@ -1,34 +0,0 @@ -[MASTER] -files = $(git ls-files '*.py') - -# Maximum line length -max-line-length = 120 - -# Directories to ignore -ignore = tests/*, migrations/* - -[BASIC] - -# Reports only fatal errors -fail-under = 10 - -[MESSAGES CONTROL] - -# Enable these messages -enable = all - -# Disable these messages -disable = C0103,C0111,R0913 - -[REPORTS] - -# Output format -output-format = colorized - -# Include only errors and warnings in the report -reports = no - -[FORMAT] - -# Naming convention for variables -good-names = i,j,k,ex,Run,_