Skip to content

Commit

Permalink
update pylint and some of its options
Browse files Browse the repository at this point in the history
  • Loading branch information
tomicapretto committed Sep 14, 2023
1 parent 6c8ac33 commit f6519df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
10 changes: 1 addition & 9 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,7 @@ disable=missing-docstring,
too-many-locals,
too-many-branches,
too-many-statements,
no-self-use,
too-few-public-methods,
bad-continuation,
cyclic-import # There was a false positive when working on #607


Expand Down Expand Up @@ -132,12 +130,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.
Expand Down Expand Up @@ -259,7 +251,7 @@ good-names=b,
ok,
sd,
tr,
eta,
eta,
Run,
_log,
_,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dev = [
"black==22.3.0",
"ipython>=5.8.0,!=8.7.0",
"pre-commit>=2.19",
"pylint==2.10.2",
"pylint==2.17.5",
"pytest-cov>=2.6.1",
"pytest>=4.4.0",
"quartodoc==0.6.1",
Expand Down

0 comments on commit f6519df

Please sign in to comment.