-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
85 lines (76 loc) · 1.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
plugins = ["covdefaults"]
[tool.coverage.report]
fail_under = 1
[tool.isort]
add_imports = [
"from __future__ import annotations"
]
force_single_line = true
profile = "black"
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = "testing.*"
disallow_untyped_defs = false
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
[tool.ruff]
line-length = 79
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint]
extend-select = [
"E",
"F",
"W",
"UP",
"B",
"SIM",
"PT",
"D",
"N",
"FBT",
"A",
"C4",
"DTZ",
"ISC",
"LOG",
"INP",
"PIE",
"RSE",
"SLF",
"SLOT",
"TID",
"TCH",
"ARG",
"TD",
"ERA",
"PGH",
# "TRY",
"FLY",
"FURB",
"RUF",
]
ignore = [
"D100",
"D103",
"D104",
"D107",
"D203",
"D213",
"E501",
"ISC001",
"RUF001",
"TD002",
]