Skip to content

Commit

Permalink
🚨(backend) upgrade pylint configuration
Browse files Browse the repository at this point in the history
Some pylint options has been deleted, we have to upgrade .pylintrc accordingly.
  • Loading branch information
jbpenrath committed Dec 7, 2022
1 parent 5a49049 commit 318b20e
Showing 1 changed file with 1 addition and 82 deletions.
83 changes: 1 addition & 82 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -54,81 +54,7 @@ confidence=
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
disable=apply-builtin,
backtick,
bad-continuation
bad-inline-option,
bad-python3-import,
basestring-builtin,
buffer-builtin,
cmp-builtin,
cmp-method,
coerce-builtin,
coerce-method,
delslice-method,
deprecated-itertools-function,
deprecated-pragma,
deprecated-str-translate-call,
deprecated-string-function,
deprecated-types-field,
dict-items-not-iterating,
dict-iter-method,
dict-keys-not-iterating,
dict-values-not-iterating,
dict-view-method,
div-method,
django-not-configured,
eq-without-hash,
exception-message-attribute,
execfile-builtin,
file-builtin,
file-ignored,
filter-builtin-not-iterating,
getslice-method,
hex-method,
idiv-method,
import-star-module-level,
indexing-exception,
input-builtin,
intern-builtin,
invalid-str-codec,
locally-disabled,
locally-enabled,
long-builtin,
long-suffix,
map-builtin-not-iterating,
metaclass-assignment,
next-method-called,
next-method-defined,
no-absolute-import,
non-ascii-bytes-literal,
nonzero-method,
oct-method,
old-division,
old-ne-operator,
old-octal-literal,
old-raise-syntax,
parameter-unpacking,
print-statement,
raising-string,
range-builtin-not-iterating,
raw_input-builtin,
raw-checker-failed,
rdiv-method,
reduce-builtin,
reload-builtin,
round-builtin,
setslice-method,
standarderror-builtin,
suppressed-message,
sys-max-int,
unichr-builtin,
unicode-builtin,
unpacking-in-except,
useless-suppression,
using-cmp-argument,
xrange-builtin,
zip-builtin-not-iterating,
disable=django-not-configured

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down Expand Up @@ -309,13 +235,6 @@ max-line-length=100
# Maximum number of lines in a module
max-module-lines=1000

# List of optional constructs for which whitespace checking is disabled. `dict-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
# `empty-line` allows space-only lines.
no-space-check=trailing-comma,
dict-separator

# Allow the body of a class to be on the same line as the declaration if body
# contains single statement.
single-line-class-stmt=no
Expand Down

0 comments on commit 318b20e

Please sign in to comment.