Skip to content

Commit

Permalink
DBC22-783: updated pylint config
Browse files Browse the repository at this point in the history
  • Loading branch information
ray-oxd committed Mar 5, 2024
1 parent aaa9ee5 commit 3b248a0
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions src/backend/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 3b248a0

Please sign in to comment.