Skip to content

Commit 05dde50

Browse files
ray-oxdfatbird
authored andcommitted
DBC22-783: updated pylint config
1 parent 336fb2a commit 05dde50

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

src/backend/.pylintrc

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ignore=CVS
5252
# ignore-list. The regex matches against paths and can be in Posix or Windows
5353
# format. Because '\\' represents the directory delimiter on Windows systems,
5454
# it can't be used as an escape character.
55-
ignore-paths=
55+
ignore-paths=.*/migrations/*
5656

5757
# Files or directories matching the regular expression patterns are skipped.
5858
# The regex matches against base names, not paths. The default value ignores
@@ -77,7 +77,7 @@ jobs=1
7777
# Control the amount of potential inferred values when inferring a single
7878
# object. This can help the performance when dealing with large functions or
7979
# complex, nested conditions.
80-
limit-inference-results=100
80+
limit-inference-results=128
8181

8282
# List of plugins (as comma separated values of python module names) to load,
8383
# usually to register additional checkers.
@@ -337,7 +337,7 @@ indent-after-paren=4
337337
indent-string=' '
338338

339339
# Maximum number of characters on a single line.
340-
max-line-length=100
340+
max-line-length=128
341341

342342
# Maximum number of lines in a module.
343343
max-module-lines=1000
@@ -428,7 +428,16 @@ disable=raw-checker-failed,
428428
suppressed-message,
429429
useless-suppression,
430430
deprecated-pragma,
431-
use-symbolic-message-instead
431+
use-symbolic-message-instead,
432+
missing-module-docstring,
433+
missing-class-docstring,
434+
missing-function-docstring,
435+
invalid-name,
436+
import-error,
437+
abstract-method,
438+
import-outside-toplevel,
439+
too-few-public-methods,
440+
too-many-ancestors
432441

433442
# Enable the message, report, category or checker with the given id(s). You can
434443
# either give multiple identifier separated by comma (,) or put this option

0 commit comments

Comments
 (0)