Skip to content
This repository was archived by the owner on Feb 21, 2022. It is now read-only.

Commit 30b6452

Browse files
committed
chore: replace .pylintrc with pyproject.toml config
1 parent 1795a97 commit 30b6452

File tree

2 files changed

+38
-36
lines changed

2 files changed

+38
-36
lines changed

.pylintrc

Lines changed: 0 additions & 36 deletions
This file was deleted.

pyproject.toml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,41 @@ tox-docker = ">=2.0.0"
131131
[build-system]
132132
requires = ["poetry-core>=1.0.0"]
133133
build-backend = "poetry.core.masonry.api"
134+
135+
136+
[tool.pylint.master]
137+
jobs=2
138+
139+
[tool.pylint.messages_control]
140+
disable = [
141+
"abstract-method",
142+
"bad-continuation",
143+
"bare-except",
144+
"broad-except",
145+
"duplicate-code",
146+
"fixme",
147+
"inconsistent-return-statements",
148+
"invalid-name",
149+
"line-too-long",
150+
"locally-disabled",
151+
"missing-docstring",
152+
"no-member",
153+
"no-self-use",
154+
"no-value-for-parameter",
155+
"protected-access",
156+
"raise-missing-from",
157+
"redefined-builtin",
158+
"redefined-outer-name",
159+
"relative-import",
160+
"too-few-public-methods",
161+
"too-many-ancestors",
162+
"ungrouped-imports",
163+
"unused-argument",
164+
"wrong-import-position"
165+
]
166+
167+
[tool.pylint.reports]
168+
output-format="colorized"
169+
170+
[tool.pylint.format]
171+
logging-modules=["logging", "structlog"]

0 commit comments

Comments
 (0)