Skip to content

Commit 8261c15

Browse files
committed
Disable some duplicated checks from pylint
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent a085832 commit 8261c15

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,15 @@ disable = [
136136
# it is a type-check, for which we already have mypy.
137137
"unsubscriptable-object",
138138
# Checked by flake8
139+
"f-string-without-interpolation",
139140
"line-too-long",
141+
"missing-function-docstring",
140142
"redefined-outer-name",
141143
"unnecessary-lambda-assignment",
142144
"unused-import",
143145
"unused-variable",
146+
# Checked by mypy
147+
"no-member",
144148
]
145149

146150
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)