We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9d009c commit d5a62e4Copy full SHA for d5a62e4
pyproject.toml
@@ -8,6 +8,7 @@ dependencies = []
8
9
[tool.pylint.messages_control]
10
disable = [
11
+ "duplicate-code",
12
"missing-module-docstring",
13
"missing-class-docstring",
14
"missing-function-docstring",
@@ -34,7 +35,7 @@ max-args = 10
34
35
max-locals = 20
36
max-branches = 15
37
-[dependency-groups]
38
-dev = [
39
- "pylint>=4.0.4",
40
-]
+[tool.pylint.similarities]
+# Ignore duplicate code warnings (common in multi-distro implementations)
+min-similarity-lines = 10
41
+ignore-imports = true
0 commit comments