Skip to content

Commit

Permalink
More comments for the pylint config in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch committed Aug 19, 2020
1 parent f21a742 commit 4470023
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ exclude = '''


[tool.pylint.messages_control]
# From black: bad-continuation, bad-whitespace
# Exceptions we want to have: invalid-name
# Unclear to me: no-else-return, no-else-raise
# Exceptions suggested from Black: bad-continuation, bad-whitespace
disable = """
bad-continuation,
bad-whitespace,
Expand All @@ -39,12 +37,14 @@ no-else-raise,
missing-module-docstring,
missing-function-docstring,
"""
# Many more `disable`s are defined in `./tox.ini` on a per-module basis!

[tool.pylint.format]
max-line-length = "88"

[tool.pylint.master]
extension-pkg-whitelist = "numpy"
# Extensions that might be of interest in the future:
# pylint.extensions.docstyle,
# pylint.extensions.check_elif,
# pylint.extensions.docparams,
Expand Down

0 comments on commit 4470023

Please sign in to comment.