@@ -21,10 +21,7 @@ extension-pkg-whitelist=
2121
2222# Add files or directories to the blacklist. They should be base names, not
2323# paths.
24- ignore =
25- CVS,
26- # # No need to lint auto-generated files
27- setup.py,
24+ ignore =CVS
2825
2926# Add files or directories matching the regex patterns to the blacklist. The
3027# regex matches against base names, not paths.
@@ -79,101 +76,23 @@ confidence=
7976# --enable=similarities". If you want to run only the classes checker, but have
8077# no Warning level messages displayed, use "--disable=all --enable=classes
8178# --disable=W".
82- disable =
83- print-statement,
84- parameter-unpacking,
85- unpacking-in-except,
86- old-raise-syntax,
87- backtick,
88- long-suffix,
89- old-ne-operator,
90- old-octal-literal,
91- import-star-module-level,
92- non-ascii-bytes-literal,
93- raw-checker-failed,
94- bad-inline-option,
95- locally-disabled,
96- file-ignored,
97- suppressed-message,
98- useless-suppression,
99- deprecated-pragma,
100- use-symbolic-message-instead,
101- apply-builtin,
102- basestring-builtin,
103- buffer-builtin,
104- cmp-builtin,
105- coerce-builtin,
106- execfile-builtin,
107- file-builtin,
108- long-builtin,
109- raw_input-builtin,
110- reduce-builtin,
111- standarderror-builtin,
112- unicode-builtin,
113- xrange-builtin,
114- coerce-method,
115- delslice-method,
116- getslice-method,
117- setslice-method,
118- no-absolute-import,
119- old-division,
120- dict-iter-method,
121- dict-view-method,
122- next-method-called,
123- metaclass-assignment,
124- indexing-exception,
125- raising-string,
126- reload-builtin,
127- oct-method,
128- hex-method,
129- nonzero-method,
130- cmp-method,
131- input-builtin,
132- round-builtin,
133- intern-builtin,
134- unichr-builtin,
135- map-builtin-not-iterating,
136- zip-builtin-not-iterating,
137- range-builtin-not-iterating,
138- filter-builtin-not-iterating,
139- using-cmp-argument,
140- eq-without-hash,
141- div-method,
142- idiv-method,
143- rdiv-method,
144- exception-message-attribute,
145- invalid-str-codec,
146- sys-max-int,
147- bad-python3-import,
148- deprecated-string-function,
149- deprecated-str-translate-call,
150- deprecated-itertools-function,
151- deprecated-types-field,
152- next-method-defined,
153- dict-items-not-iterating,
154- dict-keys-not-iterating,
155- dict-values-not-iterating,
156- deprecated-operator-function,
157- deprecated-urllib-function,
158- xreadlines-attribute,
159- deprecated-sys-function,
160- exception-escape,
161- comprehension-escape,
162- # # Excessive false positives
163- duplicate-code,
164- # # We have code review to ensure readability, no need for the following
165- # # highly-opinionated checks
166- too-many-arguments,
167- too-many-branches,
168- too-many-lines,
169- too-many-locals,
170- too-many-statements,
171- # # Disable false positives due to a bug in astroid, can be removed when
172- # # astroid>2.3.3 is released, see
173- # # https://q-ctrl.atlassian.net/browse/QENG-605
174- unsubscriptable-object,
175- # # Handled by Black
176- bad-continuation,
79+ disable =raw-checker-failed,
80+ bad-inline-option,
81+ locally-disabled,
82+ file-ignored,
83+ suppressed-message,
84+ useless-suppression,
85+ deprecated-pragma,
86+ use-symbolic-message-instead,
87+ # # Excessive false positives
88+ duplicate-code,
89+ # # We have code review to ensure readability, no need for the following
90+ # # highly-opinionated checks
91+ too-many-arguments,
92+ too-many-branches,
93+ too-many-lines,
94+ too-many-locals,
95+ too-many-statements,
17796
17897
17998# Enable the message, report, category or checker with the given id(s). You can
@@ -365,13 +284,6 @@ max-line-length=100
365284# Maximum number of lines in a module.
366285max-module-lines =1000
367286
368- # List of optional constructs for which whitespace checking is disabled. `dict-
369- # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
370- # `trailing-comma` allows a space between comma and closing bracket: (a, ).
371- # `empty-line` allows space-only lines.
372- no-space-check =trailing-comma,
373- dict-separator
374-
375287# Allow the body of a class to be on the same line as the declaration if body
376288# contains single statement.
377289single-line-class-stmt =no
0 commit comments