@@ -60,88 +60,19 @@ confidence=
60
60
# --enable=similarities". If you want to run only the classes checker, but have
61
61
# no Warning level messages displayed, use "--disable=all --enable=classes
62
62
# --disable=W".
63
- disable =print-statement,
64
- parameter-unpacking,
65
- unpacking-in-except,
66
- old-raise-syntax,
67
- backtick,
68
- long-suffix,
69
- old-ne-operator,
70
- old-octal-literal,
71
- import-star-module-level,
72
- non-ascii-bytes-literal,
73
- raw-checker-failed,
63
+ disable =raw-checker-failed,
74
64
bad-inline-option,
75
65
locally-disabled,
76
66
file-ignored,
77
67
suppressed-message,
78
68
useless-suppression,
79
69
deprecated-pragma,
80
70
use-symbolic-message-instead,
81
- apply-builtin,
82
- basestring-builtin,
83
- buffer-builtin,
84
- cmp-builtin,
85
- coerce-builtin,
86
- execfile-builtin,
87
- file-builtin,
88
- long-builtin,
89
- raw_input-builtin,
90
- reduce-builtin,
91
- standarderror-builtin,
92
- unicode-builtin,
93
- xrange-builtin,
94
- coerce-method,
95
- delslice-method,
96
- getslice-method,
97
- setslice-method,
98
- no-absolute-import,
99
- old-division,
100
- dict-iter-method,
101
- dict-view-method,
102
- next-method-called,
103
- metaclass-assignment,
104
- indexing-exception,
105
- raising-string,
106
- reload-builtin,
107
- oct-method,
108
- hex-method,
109
- nonzero-method,
110
- cmp-method,
111
- input-builtin,
112
- round-builtin,
113
- intern-builtin,
114
- unichr-builtin,
115
- map-builtin-not-iterating,
116
- zip-builtin-not-iterating,
117
- range-builtin-not-iterating,
118
- filter-builtin-not-iterating,
119
- using-cmp-argument,
120
- eq-without-hash,
121
- div-method,
122
- idiv-method,
123
- rdiv-method,
124
- exception-message-attribute,
125
- invalid-str-codec,
126
- sys-max-int,
127
- bad-python3-import,
128
- deprecated-string-function,
129
- deprecated-str-translate-call,
130
- deprecated-itertools-function,
131
- deprecated-types-field,
132
- next-method-defined,
133
- dict-items-not-iterating,
134
- dict-keys-not-iterating,
135
- dict-values-not-iterating,
136
- deprecated-operator-function,
137
- deprecated-urllib-function,
138
- xreadlines-attribute,
139
- deprecated-sys-function,
140
- exception-escape,
141
- comprehension-escape,
142
71
unsubscriptable-object,
143
72
unspecified-encoding,
144
- unused-private-member
73
+ unused-private-member,
74
+ missing-timeout,
75
+ unnecessary-dunder-call
145
76
146
77
# Enable the message, report, category or checker with the given id(s). You can
147
78
# either give multiple identifier separated by comma (,) or put this option
@@ -325,12 +256,6 @@ max-line-length=100
325
256
# Maximum number of lines in a module.
326
257
max-module-lines =1000
327
258
328
- # List of optional constructs for which whitespace checking is disabled. `dict-
329
- # separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
330
- # `trailing-comma` allows a space between comma and closing bracket: (a, ).
331
- # `empty-line` allows space-only lines.
332
- no-space-check =trailing-comma,
333
- dict-separator
334
259
335
260
# Allow the body of a class to be on the same line as the declaration if body
336
261
# contains single statement.
0 commit comments