Skip to content

Commit

Permalink
Enable invalid-name linting for pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-eq committed Jan 25, 2024
1 parent 4a6d1c9 commit fcb5e5e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ disable = [
"duplicate-code",
"file-ignored",
"fixme",
"invalid-name",
"line-too-long",
"locally-disabled",
"logging-not-lazy",
Expand All @@ -107,6 +106,11 @@ disable = [
"useless-object-inheritance",
]

[tool.pylint.MASTER]
ignore-paths = [
'^.*\\_version.py'
]

[tool.ruff]
src = ["src"]
select = [
Expand Down

0 comments on commit fcb5e5e

Please sign in to comment.