Remove some deprecated pylint config entries

This commit is contained in:
kcgen 2023-02-02 12:53:06 -08:00
parent 3019baf1a0
commit 0eeaf35e42
No known key found for this signature in database
GPG key ID: 614C54CDCA116C54

12
.pylint
View file

@ -66,11 +66,7 @@ disable=print-statement,
unpacking-in-except,
old-raise-syntax,
backtick,
long-suffix,
old-ne-operator,
old-octal-literal,
import-star-module-level,
non-ascii-bytes-literal,
raw-checker-failed,
bad-inline-option,
locally-disabled,
@ -118,7 +114,6 @@ disable=print-statement,
range-builtin-not-iterating,
filter-builtin-not-iterating,
using-cmp-argument,
eq-without-hash,
div-method,
idiv-method,
rdiv-method,
@ -249,13 +244,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