@@ -24,8 +24,7 @@ confidence=
24
24
# --enable=similarities". If you want to run only the classes checker, but have
25
25
# no Warning level messages displayed, use"--disable=all --enable=classes
26
26
# --disable=W"
27
- enable =all,
28
- python3
27
+ enable =all
29
28
disable =I,
30
29
R, # refactoring checks
31
30
abstract-method, # nice to have
@@ -34,14 +33,14 @@ disable=I,
34
33
bad-whitespace, # pep8, nice to have
35
34
broad-except,
36
35
comprehension-escape, # throws false positives on 1.9.0 (Fedora 29)
37
- deprecated-lambda, # nice to have
36
+ ; deprecated-lambda, # nice to have
38
37
import-outside-toplevel,
39
38
import-error, # requires to having all modules installed
40
39
invalid-name,
41
40
len-as-condition, # nice to have
42
41
line-too-long, # pep8, should be enabled
43
42
missing-docstring,
44
- misplaced-comparison-constant,
43
+ ; misplaced-comparison-constant,
45
44
multiple-statements, # nice to have
46
45
no-absolute-import, # it was required for py2
47
46
no-init,
@@ -51,7 +50,7 @@ disable=I,
51
50
old-division, # it was required for py2
52
51
protected-access,
53
52
redefined-outer-name, # nice to have
54
- relative-import, # nice to have
53
+ ; relative-import, # nice to have
55
54
super-init-not-called, # nice to have
56
55
superfluous-parens, # nice to have
57
56
too-many-lines,
0 commit comments