-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
66 lines (63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = true
no_implicit_optional = true
strict_optional = true
warn_return_any = true
warn_no_return = true
warn_unreachable = true
pretty = true
exclude = ["test_libraries/"]
[tool.black]
target-version = ['py38']
line-length = 100
include_trailing_comma = false
skip-string-normalization = true
[tool.ruff]
line-length = 100
unfixable = [
"UP007"
]
exclude = [
"__pycache__",
"config.py",
"model.py",
"tests",
"itb_project_export.py"
]
ignore = [
"T201",
"B008", # Todo: fix later
"PLR0913", # Todo: fix later
]
target-version = "py38"
select = [
"E",
"F",
"W",
"C90",
"I",
"N",
"B",
"PYI",
"PL",
"PTH",
"UP",
"A",
"C4",
"DTZ",
"ISC",
"ICN",
"INP",
"PIE",
"T20",
"PYI",
"PT",
"RSE",
"RET",
"SIM",
"RUF"
]