-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 909 Bytes
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 909 Bytes
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
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.isort]
skip_gitignore = true
profile = "black"
line_length = 120
multi_line_output = 3
force_single_line = true
[tool.pylint.'MASTER']
ignore-paths = [
".git/",
"venv/",
".venv/",
".mypy_cache/",
"__pycache__/",
".pytest_cache/",
"alembic/"
]
extension-pkg-whitelist = ["pydantic"]
[tool.pylint.'BASIC']
variable-rgx = "^[a-z][a-zA-Z0-9_]*$"
argument-rgx = "^[a-z][a-zA-Z0-9_]*$"
class-rgx = "^(_?[A-Z][a-zA-Z0-9]*)*$"
[tool.pylint.'MESSAGES CONTROL']
disable = [
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
"too-many-instance-attributes",
"too-many-arguments",
"too-few-public-methods",
"no-else-return",
"no-else-raise",
"fixme",
"duplicate-code",
"redefined-builtin",
]
[tool.pylint.'FORMAT']
max-line-length = 120