-
Notifications
You must be signed in to change notification settings - Fork 443
/
pyproject.toml
80 lines (75 loc) · 1005 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = [
"F",
"E",
"W",
"C90",
"I",
"N",
"D",
"UP",
"YTT",
"ASYNC",
"S",
"BLE",
"B",
"A",
"COM",
"C4",
"DTZ",
"T10",
"DJ",
"EM",
"EXE",
"FA",
"ISC",
"ICN",
"LOG",
"PIE",
"PYI",
"PT",
"Q",
"RSE",
"RET",
"SLF",
"SLOT",
"SIM",
"TID",
"TCH",
"INT",
"ERA",
"PGH",
]
ignore = [
"F821",
"F841",
"D100",
"D107",
"D211",
"D212",
"S301",
"S311",
"S603",
"S605",
"S607",
"B008",
"B028",
"B905",
"COM812",
"ISC001",
"TC003",
]
exclude=["student_repos/"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.codespell]
skip = "*.pdf,*.ipynb,*.drawio,*.json"
ignore-words-list = ["instanciate"]
[tool.typos.default.extend-identifiers]
arange = "arange"
[tool.typos.default.extend-words]
Ue = "Ue"
Hashi = "Hashi"