Skip to content

Commit

Permalink
Remove unsupported message codes from pylint
Browse files Browse the repository at this point in the history
and other minor improvements
  • Loading branch information
apivovarov committed Sep 26, 2024
1 parent 9f4e8d0 commit 0cda6e0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ doctest_optionflags = [
addopts = "--doctest-glob='*.rst' --ignore='examples/ffi'"

[tool.pylint.master]
extension-pkg-whitelist = "numpy"
extension-pkg-whitelist = ["numpy"]

[tool.pylint."messages control"]
disable = [
Expand All @@ -82,7 +82,6 @@ disable = [
"invalid-name",
"redefined-outer-name",
"redefined-builtin",
"protected-name",
"no-else-return",
"fixme",
"protected-access",
Expand All @@ -91,7 +90,7 @@ disable = [
"too-few-public-methods",
"unnecessary-lambda"
]
enable = "c-extension-no-member"
enable = ["c-extension-no-member"]

[tool.pylint.format]
indent-string=" "
Expand Down

0 comments on commit 0cda6e0

Please sign in to comment.