-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
60 lines (60 loc) · 1.35 KB
/
pyproject.toml
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
57
58
59
60
[tool]
[tool.pylint]
[tool.pylint.master]
fail-under=10
[tool.pylint.messages_control]
disable="all"
enable=[
"async",
"format",
"invalid-name", # basic
"imports",
"miscellaneous",
"refactoring",
"similarities",
"stdlib",
"string",
]
[tool.pylint.reports]
[tool.pylint.format]
indent-string=" "
indent-after-paren=8
[tool.pylint.logging]
[tool.pylint.miscelaneous]
notes=[
"TODO",
"HACK",
"XXX",
]
[tool.pylint.spelling]
[tool.pylint.string]
[tool.pylint.typecheck]
[tool.pylint.basic]
good-names=[
"i",
"j",
"k",
"t",
"x",
"y",
"z",
"ex",
"Run",
"_",
"__"
]
# Naming Conventions
argument_naming-style="snake_case"
attr-naming-style="snake_case"
class-naming-style="PascalCase"
class-attribute-naming-style="UPPER_CASE"
const-naming-style="UPPER_CASE"
function-naming-style="snake_case"
inlinevar-naming-style="snake_case"
method-naming-style="snake_case"
module-naming-style="snake_case"
variable-naming-style="snake_case"
[tool.pytest]
[tool.pytest.ini_options]
required_plugins=["pytest-cov"]
testpaths=[""]