Skip to content

Commit b7f59af

Browse files
committed
cleanup pylint config
1 parent f166e77 commit b7f59af

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

pyproject.toml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pylint-quotes = "^0.2.3"
2626
addopts = "-x -p no:warnings --cov-report=term-missing --cov-report=term --no-cov-on-fail --cov=python_repository"
2727

2828
[tool.pylint.main]
29-
ignore = ["venv", ".venv", ".pytest_cache", ".idea", ".vscode", ".git", ".github"]
29+
ignore = ["venv", ".venv", ".pytest_cache"]
3030
load-plugins = "pylint_quotes"
3131
py-version = "3.10"
3232
recursive = true
@@ -36,16 +36,7 @@ suggestion-mode = true
3636
max-line-length = 200
3737

3838
[tool.pylint."messages control"]
39-
disable = [
40-
"no-name-in-module",
41-
"missing-module-docstring",
42-
]
43-
44-
[tool.pylint.similarities]
45-
ignore-comments = true
46-
ignore-docstrings = true
47-
ignore-imports = true
48-
ignore-signatures = true
39+
disable = ["missing-module-docstring"]
4940

5041
[tool.pylint.string]
5142
check-quote-consistency = true
@@ -54,6 +45,3 @@ check-str-concat-over-line-jumps = true
5445
string-quote = "double"
5546
triple-quote = "double"
5647
docstring-quote = "double"
57-
58-
[tool.pylint.typecheck]
59-
contextmanager-decorators = ["contextlib.contextmanager"]

0 commit comments

Comments
 (0)