-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (22 loc) · 698 Bytes
/
pyproject.toml
File metadata and controls
26 lines (22 loc) · 698 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ['py38']
[tool.pylint."messages control"]
ignore = ["setup.py", "__init__.py"]
disable = "all"
enable = [
"empty-docstring",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring"
]
[tool.isort]
profile = "black"
known_first_party = ["mycorp"] # see package configuration below
[tool.pyright]
extraPaths = ["server/workers/api"]
reportMissingTypeArgument = true # Report generic classes used without type arguments
strictListInference = true # Use union types when inferring types of lists elements, instead of Any