You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Pylint 2.4 adds self-assigning-variable. But we do *that* to avoid unused-import when we
50
126
# "export" the variable and don't have a __all__.
51
127
# Pylint 2.6+ adds some python-3-only things that don't apply: raise-missing-from, super-with-arguments, consider-using-f-string, redundant-u-string-prefix
128
+
# unnecessary-lambda-assignment: New check introduced in v2.14.0
129
+
# unnecessary-dunder-call: New check introduced in v2.14.0
130
+
# consider-using-assignment-expr: wants you to use the walrus operator.
131
+
# It hits way too much and its not clear they would be improvements.
132
+
# confusing-consecutive-elif: Are they though?
52
133
disable=wrong-import-position,
53
134
wrong-import-order,
54
135
missing-docstring,
55
136
ungrouped-imports,
56
137
invalid-name,
138
+
protected-access,
57
139
too-few-public-methods,
140
+
exec-used,
58
141
global-statement,
142
+
multiple-statements,
59
143
locally-disabled,
144
+
cyclic-import,
60
145
too-many-arguments,
146
+
redefined-builtin,
61
147
useless-suppression,
62
148
duplicate-code,
149
+
undefined-all-variable,
150
+
inconsistent-return-statements,
151
+
useless-return,
63
152
useless-object-inheritance,
64
153
import-outside-toplevel,
65
154
self-assigning-variable,
66
-
consider-using-f-string
155
+
raise-missing-from,
156
+
super-with-arguments,
157
+
consider-using-f-string,
158
+
consider-using-assignment-expr,
159
+
redundant-u-string-prefix,
160
+
unnecessary-lambda-assignment,
161
+
unnecessary-dunder-call,
162
+
use-dict-literal,
163
+
confusing-consecutive-elif,
164
+
67
165
166
+
enable=consider-using-augmented-assign
68
167
69
168
[FORMAT]
70
-
max-line-length=100
169
+
# duplicated from setup.cfg
170
+
max-line-length=160
71
171
max-module-lines=1100
72
172
73
173
[MISCELLANEOUS]
74
174
# List of note tags to take in consideration, separated by a comma.
75
175
#notes=FIXME,XXX,TODO
76
-
# Disable that, we don't want them to fail the lint CI job.
176
+
# Disable that, we don't want them in the report (???)
77
177
notes=
78
178
79
179
[VARIABLES]
@@ -85,14 +185,8 @@ dummy-variables-rgx=_.*
85
185
# List of members which are set dynamically and missed by pylint inference
86
186
# system, and so shouldn't trigger E1101 when accessed. Python regular
0 commit comments