@@ -52,7 +52,7 @@ ignore=CVS
52
52
# ignore-list. The regex matches against paths and can be in Posix or Windows
53
53
# format. Because '\\' represents the directory delimiter on Windows systems,
54
54
# it can't be used as an escape character.
55
- ignore-paths =
55
+ ignore-paths =.*/migrations/*
56
56
57
57
# Files or directories matching the regular expression patterns are skipped.
58
58
# The regex matches against base names, not paths. The default value ignores
77
77
# Control the amount of potential inferred values when inferring a single
78
78
# object. This can help the performance when dealing with large functions or
79
79
# complex, nested conditions.
80
- limit-inference-results =100
80
+ limit-inference-results =128
81
81
82
82
# List of plugins (as comma separated values of python module names) to load,
83
83
# usually to register additional checkers.
@@ -337,7 +337,7 @@ indent-after-paren=4
337
337
indent-string =' '
338
338
339
339
# Maximum number of characters on a single line.
340
- max-line-length =100
340
+ max-line-length =128
341
341
342
342
# Maximum number of lines in a module.
343
343
max-module-lines =1000
@@ -428,7 +428,16 @@ disable=raw-checker-failed,
428
428
suppressed-message,
429
429
useless-suppression,
430
430
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
432
441
433
442
# Enable the message, report, category or checker with the given id(s). You can
434
443
# either give multiple identifier separated by comma (,) or put this option
0 commit comments