diff --git a/src/backend/.pylintrc b/src/backend/.pylintrc index 428a10575..61a7c44e9 100644 --- a/src/backend/.pylintrc +++ b/src/backend/.pylintrc @@ -52,7 +52,7 @@ ignore=CVS # ignore-list. The regex matches against paths and can be in Posix or Windows # format. Because '\\' represents the directory delimiter on Windows systems, # it can't be used as an escape character. -ignore-paths= +ignore-paths=.*/migrations/* # Files or directories matching the regular expression patterns are skipped. # The regex matches against base names, not paths. The default value ignores @@ -77,7 +77,7 @@ jobs=1 # Control the amount of potential inferred values when inferring a single # object. This can help the performance when dealing with large functions or # complex, nested conditions. -limit-inference-results=100 +limit-inference-results=128 # List of plugins (as comma separated values of python module names) to load, # usually to register additional checkers. @@ -337,7 +337,7 @@ indent-after-paren=4 indent-string=' ' # Maximum number of characters on a single line. -max-line-length=100 +max-line-length=128 # Maximum number of lines in a module. max-module-lines=1000 @@ -428,7 +428,16 @@ disable=raw-checker-failed, suppressed-message, useless-suppression, deprecated-pragma, - use-symbolic-message-instead + use-symbolic-message-instead, + missing-module-docstring, + missing-class-docstring, + missing-function-docstring, + invalid-name, + import-error, + abstract-method, + import-outside-toplevel, + too-few-public-methods, + too-many-ancestors # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option