-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "deb-scripts"
version = "1.0.4"
description = "DevOps Automation Scripts for all linux system"
readme = "README.md"
requires-python = ">=3.12"
dependencies = []
[tool.pylint.messages_control]
disable = [
"duplicate-code",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"too-few-public-methods",
"invalid-name",
"line-too-long",
"too-many-arguments",
"too-many-locals",
"too-many-branches",
"too-many-statements",
"broad-except",
"redefined-outer-name",
"import-error",
"no-else-return",
"import-outside-toplevel",
"subprocess-run-check",
"simplifiable-if-statement",
"too-many-return-statements",
"global-variable-not-assigned",
"consider-using-sys-exit",
"unspecified-encoding",
"simplifiable-if-expression",
"useless-parent-delegation",
"unnecessary-pass"
]
[tool.pylint.format]
max-line-length = 120
[tool.pylint.basic]
good-names = ["i", "j", "k", "ex", "Run", "_", "f", "e", "fp"]
[tool.pylint.design]
max-args = 10
max-locals = 20
max-branches = 15
max-returns = 10
[tool.pylint.similarities]
min-similarity-lines = 10
ignore-imports = true
[dependency-groups]
dev = [
"pylint>=4.0.4",
]