Skip to content

Commit 9b326ad

Browse files
committed
More legit messages.
1 parent 367eafe commit 9b326ad

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

.pylintrc

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,27 @@ enable=import-error,
5454
import-self,
5555
reimported,
5656
wildcard-import,
57-
misplaced-future
58-
57+
misplaced-future,
58+
import-error,
59+
import-self,
60+
reimported,
61+
relative-import,
62+
deprecated-module,
63+
wildcard-import,
64+
misplaced-future,
65+
unpacking-non-sequence,
66+
invalid-all-object,
67+
no-name-in-module,
68+
undefined-all-variable,
69+
used-before-assignment,
70+
cell-var-from-loop,
71+
global-variable-undefined,
72+
redefined-builtin,
73+
redefine-in-handler
74+
75+
# Things we'd like to enable:
76+
# redefined-outer-name (requires a bunch of work to clean up our code first)
77+
# undefined-variable (re-enable when pylint fixes https://github.com/PyCQA/pylint/issues/760)
5978

6079

6180
# ...

0 commit comments

Comments
 (0)