forked from minitorch/minitorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.16 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "minitorch"
version = "0.5"
[tool.pyright]
include = ["minitorch","tests"]
exclude = ["**/docs", "**/project", "**/mt_diagrams", "**/assignments"]
venvPath = "."
venv = ".venv"
reportUnknownMemberType = "none"
reportUnknownParameterType = "none"
reportUnknownArgumentType = "none"
reportUnknownVariableType = "none"
reportMissingTypeArgument = "none"
reportMissingTypeStubs = "none"
reportUnusedExpression = "none"
reportUnknownLambdaType = "none"
reportIncompatibleMethodOverride = "none"
reportPrivateUsage = "none"
[tool.pytest.ini_options]
markers = [
"task0_0",
"task0_1",
"task0_2",
"task0_3",
"task0_4",
"task1_0",
"task1_1",
"task1_2",
"task1_3",
"task1_4",
"task2_0",
"task2_1",
"task2_2",
"task2_3",
"task2_4",
"task3_0",
"task3_1",
"task3_2",
"task3_3",
"task3_4",
"task4_0",
"task4_1",
"task4_2",
"task4_3",
"task4_4",
]
[tool.ruff.lint]
ignore = ["N801", "E203", "E266", "E501", "E741", "N803", "N802", "N806"]
exclude = [".git","__pycache__","docs/slides/*","old,build","dist"]