Skip to content

Commit df08a38

Browse files
committed
update pylintrc, removed options (E0015,R0022)
1 parent 96e2167 commit df08a38

File tree

1 file changed

+1
-80
lines changed

1 file changed

+1
-80
lines changed

pylintrc

Lines changed: 1 addition & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -60,86 +60,14 @@ 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,
76-
locally-enabled,
7766
file-ignored,
7867
suppressed-message,
7968
useless-suppression,
8069
deprecated-pragma,
8170
use-symbolic-message-instead,
82-
apply-builtin,
83-
basestring-builtin,
84-
buffer-builtin,
85-
cmp-builtin,
86-
coerce-builtin,
87-
execfile-builtin,
88-
file-builtin,
89-
long-builtin,
90-
raw_input-builtin,
91-
reduce-builtin,
92-
standarderror-builtin,
93-
unicode-builtin,
94-
xrange-builtin,
95-
coerce-method,
96-
delslice-method,
97-
getslice-method,
98-
setslice-method,
99-
no-absolute-import,
100-
old-division,
101-
dict-iter-method,
102-
dict-view-method,
103-
next-method-called,
104-
metaclass-assignment,
105-
indexing-exception,
106-
raising-string,
107-
reload-builtin,
108-
oct-method,
109-
hex-method,
110-
nonzero-method,
111-
cmp-method,
112-
input-builtin,
113-
round-builtin,
114-
intern-builtin,
115-
unichr-builtin,
116-
map-builtin-not-iterating,
117-
zip-builtin-not-iterating,
118-
range-builtin-not-iterating,
119-
filter-builtin-not-iterating,
120-
using-cmp-argument,
121-
eq-without-hash,
122-
div-method,
123-
idiv-method,
124-
rdiv-method,
125-
exception-message-attribute,
126-
invalid-str-codec,
127-
sys-max-int,
128-
bad-python3-import,
129-
deprecated-string-function,
130-
deprecated-str-translate-call,
131-
deprecated-itertools-function,
132-
deprecated-types-field,
133-
next-method-defined,
134-
dict-items-not-iterating,
135-
dict-keys-not-iterating,
136-
dict-values-not-iterating,
137-
deprecated-operator-function,
138-
deprecated-urllib-function,
139-
xreadlines-attribute,
140-
deprecated-sys-function,
141-
exception-escape,
142-
comprehension-escape
14371

14472
# Enable the message, report, category or checker with the given id(s). You can
14573
# either give multiple identifier separated by comma (,) or put this option
@@ -323,13 +251,6 @@ max-line-length=120
323251
# Maximum number of lines in a module.
324252
max-module-lines=1000
325253

326-
# List of optional constructs for which whitespace checking is disabled. `dict-
327-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
328-
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
329-
# `empty-line` allows space-only lines.
330-
no-space-check=trailing-comma,
331-
dict-separator
332-
333254
# Allow the body of a class to be on the same line as the declaration if body
334255
# contains single statement.
335256
single-line-class-stmt=no

0 commit comments

Comments
 (0)