Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 13, 2023
1 parent 0ca8986 commit 9bc4c25
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pylint/config/find_default_config_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@
else:
import tomli as tomllib

RC_NAMES = (Path("pylintrc"), Path("pylintrc.toml"), Path(".pylintrc"), Path(".pylintrc.toml"))
RC_NAMES = (
Path("pylintrc"),
Path("pylintrc.toml"),
Path(".pylintrc"),
Path(".pylintrc.toml"),
)
PYPROJECT_NAME = Path("pyproject.toml")
CONFIG_NAMES = (*RC_NAMES, PYPROJECT_NAME, Path("setup.cfg"))

Expand Down

0 comments on commit 9bc4c25

Please sign in to comment.