-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (42 loc) · 913 Bytes
/
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
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
]
ignore_errors = true
[tool.coverage.run]
omit = [
"*/site-packages/*",
"tests/*",
]
[tool.coverage.html]
directory = "htmlcov"
[tool.mypy]
mypy_path = "."
ignore_missing_imports = true
install_types = true
non_interactive = true
namespace_packages = true
explicit_package_bases = true
strict = true
[tool.pylint.master]
init-hook = "import sys; sys.path.append(\".\")"
jobs = 0
[tool.pylint.messages_control]
disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
"too-few-public-methods",
]
extension-pkg-whitelist = "pydantic"
[tool.pylint.format]
max-line-length = 120
[tool.pylint.similarities]
ignore-signatures = true