-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (50 loc) · 1.36 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
[tool.black]
line-length = 100
skip-string-normalization = true
[tool.codespell]
# ignore-words-list=
skip = "*.history,*local"
[tool.isort]
dedup_headings = false
import_heading_firstparty = "first-party"
import_heading_stdlib = "standard library"
import_heading_thirdparty = "third-party"
include_trailing_comma = true
known_first_party = ""
known_local_folder = "."
known_third_party = ""
line_length = 100
profile = "black"
[tool.pydocstyle]
ignore = [
"D203", # 1 blank line required before class docstring (found 0)
"D213", # Multi-line docstring summary should start at the second line
"D400", # First line should end with a period ...
"D407", # Missing dashed underline after section ...
"D413", # Missing blank line after last section ...
"D415", # First line should end with a period, question mark, or exclamation point ...
]
[tool.pylint.messages_control]
disable = [
"broad-exception-caught",
"fixme",
"invalid-name",
"too-few-public-methods",
"too-many-arguments",
"too-many-positional-arguments",
]
extension-pkg-whitelist = "pydantic"
[tool.pyright]
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md#sample-pyprojecttoml-file
exclude = [
"**/.history",
"**/__pycache__",
]
pythonPlatform = "Linux"
pythonVersion = "3.11"
[tool.pytest.ini_options]
filterwarnings = []
junit_family = "xunit2"
testpaths = [
"tests",
]