@@ -68,7 +68,13 @@ disable=fixme,
68
68
superfluous-parens,
69
69
bad-continuation,
70
70
line-too-long,
71
- bad-option-value
71
+ bad-option-value,
72
+ use-dict-literal,
73
+ missing-timeout,
74
+ unnecessary-dunder-call,
75
+ unnecessary-lambda-assignment,
76
+ broad-exception-raised,
77
+ consider-using-generator,
72
78
73
79
74
80
# Enable the message, report, category or checker with the given id(s). You can
@@ -234,13 +240,6 @@ indent-string=' '
234
240
# Maximum number of lines in a module
235
241
max-module-lines =1000
236
242
237
- # List of optional constructs for which whitespace checking is disabled. `dict-
238
- # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
239
- # `trailing-comma` allows a space between comma and closing bracket: (a, ).
240
- # `empty-line` allows space-only lines.
241
- no-space-check =trailing-comma,
242
- dict-separator
243
-
244
243
# Allow the body of a class to be on the same line as the declaration if body
245
244
# contains single statement.
246
245
single-line-class-stmt =no
@@ -415,7 +414,7 @@ max-bool-expr=5
415
414
max-branches =15
416
415
417
416
# Maximum number of locals for function / method body
418
- max-locals =15
417
+ max-locals =18
419
418
420
419
# Maximum number of parents for a class (see R0901).
421
420
max-parents =7
@@ -467,10 +466,3 @@ known-standard-library=
467
466
468
467
# Force import order to recognize a module as part of a third party library.
469
468
known-third-party =enchant
470
-
471
-
472
- [EXCEPTIONS]
473
-
474
- # Exceptions that will emit a warning when being caught. Defaults to
475
- # "Exception"
476
- overgeneral-exceptions =Exception
0 commit comments