Skip to content

Commit 57f344e

Browse files
authored
unify (#800)
Changes necessary to have the `pylint` configuration in only one location The resulting configuration in pyproject.toml should reflect what is needed now. Having it in two places was confusing. Reviewed-by: Sorin Sbarnea <[email protected]> Reviewed-by: None <None> Reviewed-by: Sviatoslav Sydorenko <webknjaz+github/[email protected]>
1 parent 4176871 commit 57f344e

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

.pylintrc

-9
This file was deleted.

pyproject.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,11 @@ skip_glob = ["tests/fixtures/common/collections*"] # Skip ansible content due to
6060

6161
[tool.pylint]
6262
[tool.pylint.master]
63-
ignore="tm_tokenize"
63+
# tm_tokenize is virtually vendored and shouldn't be linted as such
64+
ignore = "tm_tokenize"
6465

6566
[tool.pylint.messages_control]
66-
disable = "C0330, C0326"
67+
disable = "duplicate-code,unsubscriptable-object,fixme"
6768

6869
[tool.pylint.format]
6970
max-line-length = 100

0 commit comments

Comments
 (0)