@@ -54,82 +54,23 @@ confidence=
5454# --enable=similarities". If you want to run only the classes checker, but have
5555# no Warning level messages displayed, use"--disable=all --enable=classes
5656# --disable=W"
57- disable =duplicate-code,
58- print-statement,
59- parameter-unpacking,
60- unpacking-in-except,
61- old-raise-syntax,
62- backtick,
63- long-suffix,
64- old-ne-operator,
65- old-octal-literal,
66- import-star-module-level,
67- non-ascii-bytes-literal,
68- raw-checker-failed,
57+ disable =raw-checker-failed,
6958 bad-inline-option,
7059 locally-disabled,
71- locally-enabled,
7260 file-ignored,
7361 suppressed-message,
7462 useless-suppression,
7563 deprecated-pragma,
76- apply-builtin,
77- basestring-builtin,
78- buffer-builtin,
79- cmp-builtin,
80- coerce-builtin,
81- execfile-builtin,
82- file-builtin,
83- long-builtin,
84- raw_input-builtin,
85- reduce-builtin,
86- standarderror-builtin,
87- unicode-builtin,
88- xran
89- ge-builtin,
90- coerce-method,
91- delslice-method,
92- getslice-method,
93- setslice-method,
94- no-absolute-import,
95- old-division,
96- dict-iter-method,
97- dict-view-method,
98- next-method-called,
99- metaclass-assignment,
100- indexing-exception,
101- raising-string,
102- reload-builtin,
103- oct-method,
104- hex-method,
105- nonzero-method,
106- cmp-method,
107- input-builtin,
108- round-builtin,
109- intern-builtin,
110- unichr-builtin,
111- map-builtin-not-iterating,
112- zip-builtin-not-iterating,
113- range-builtin-not-iterating,
114- filter-builtin-not-iterating,
115- using-cmp-argument,
116- eq-without-hash,
117- div-method,
118- idiv-method,
119- rdiv-method,
120- exception-message-attribute,
121- invalid-str-codec,
122- sys-max-int,
123- bad-python3-import,
124- deprecated-string-function,
125- deprecated-str-translate-call,
126- deprecated-itertools-function,
127- deprecated-types-field,
128- next-method-defined,
129- dict-items-not-iterating,
130- dict-keys-not-iterating,
131- dict-values-not-iterating,
132- useless-object-inheritance
64+ use-symbolic-message-instead,
65+ # # Excessive false positives
66+ duplicate-code,
67+ # # We have code review to ensure readability, no need for the following
68+ # # highly-opinionated checks
69+ too-many-arguments,
70+ too-many-branches,
71+ too-many-lines,
72+ too-many-locals,
73+ too-many-statements,
13374
13475# Enable the message, report, category or checker with the given id(s). You can
13576# either give multiple identifier separated by comma (,) or put this option
@@ -324,13 +265,6 @@ max-line-length=100
324265# Maximum number of lines in a module
325266max-module-lines =1000
326267
327- # List of optional constructs for which whitespace checking is disabled. `dict-
328- # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
329- # `trailing-comma` allows a space between comma and closing bracket: (a, ).
330- # `empty-line` allows space-only lines.
331- no-space-check =trailing-comma,
332- dict-separator
333-
334268# Allow the body of a class to be on the same line as the declaration if body
335269# contains single statement.
336270single-line-class-stmt =no
0 commit comments