Skip to content

Commit

Permalink
pylintrc: delete removed checks
Browse files Browse the repository at this point in the history
These options all give a warning on the form:

R0022: Useless option value for '--enable', 'deprecated-urllib-function' was removed from pylint, see pylint-dev/pylint#4942. (useless-option-value)
  • Loading branch information
pjonsson committed Sep 21, 2024
1 parent f14eec5 commit d91845f
Showing 1 changed file with 1 addition and 59 deletions.
60 changes: 1 addition & 59 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,76 +10,18 @@ disable=all
# either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once). See also the "--disable" option for examples.
enable=print-statement,
parameter-unpacking,
unpacking-in-except,
old-raise-syntax,
backtick,
long-suffix,
enable=long-suffix,
old-ne-operator,
old-octal-literal,
import-star-module-level,
non-ascii-bytes-literal,
invalid-unicode-literal,
c-extension-no-member,
apply-builtin,
basestring-builtin,
buffer-builtin,
cmp-builtin,
coerce-builtin,
execfile-builtin,
file-builtin,
long-builtin,
raw_input-builtin,
reduce-builtin,
standarderror-builtin,
unicode-builtin,
xrange-builtin,
coerce-method,
delslice-method,
getslice-method,
setslice-method,
dict-iter-method,
dict-view-method,
next-method-called,
metaclass-assignment,
indexing-exception,
raising-string,
reload-builtin,
oct-method,
hex-method,
# nonzero-method,
cmp-method,
input-builtin,
# round-builtin,
intern-builtin,
unichr-builtin,
# map-builtin-not-iterating,
# zip-builtin-not-iterating,
# range-builtin-not-iterating,
filter-builtin-not-iterating,
using-cmp-argument,
# eq-without-hash,
div-method,
idiv-method,
rdiv-method,
exception-message-attribute,
invalid-str-codec,
sys-max-int,
bad-python3-import,
deprecated-string-function,
deprecated-str-translate-call,
deprecated-itertools-function,
deprecated-types-field,
next-method-defined,
dict-items-not-iterating,
dict-keys-not-iterating,
dict-values-not-iterating,
deprecated-operator-function,
deprecated-urllib-function,
xreadlines-attribute,
deprecated-sys-function,
exception-escape,
useless-import-alias


Expand Down

0 comments on commit d91845f

Please sign in to comment.