Skip to content

Commit 01901eb

Browse files
committed
Update pylint
1 parent e71c2ea commit 01901eb

File tree

1 file changed

+4
-79
lines changed

1 file changed

+4
-79
lines changed

Diff for: pylintrc

+4-79
Original file line numberDiff line numberDiff line change
@@ -60,88 +60,19 @@ confidence=
6060
# --enable=similarities". If you want to run only the classes checker, but have
6161
# no Warning level messages displayed, use "--disable=all --enable=classes
6262
# --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,
7464
bad-inline-option,
7565
locally-disabled,
7666
file-ignored,
7767
suppressed-message,
7868
useless-suppression,
7969
deprecated-pragma,
8070
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,
14271
unsubscriptable-object,
14372
unspecified-encoding,
144-
unused-private-member
73+
unused-private-member,
74+
missing-timeout,
75+
unnecessary-dunder-call
14576

14677
# Enable the message, report, category or checker with the given id(s). You can
14778
# either give multiple identifier separated by comma (,) or put this option
@@ -325,12 +256,6 @@ max-line-length=100
325256
# Maximum number of lines in a module.
326257
max-module-lines=1000
327258

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
334259

335260
# Allow the body of a class to be on the same line as the declaration if body
336261
# contains single statement.

0 commit comments

Comments
 (0)