forked from fredrik-corneliusson/click-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (49 loc) · 790 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
[tool.ruff]
lint.ignore = [
"F401",
"F403",
"F405",
"N",
"D",
"ANN101",
"EM",
"TRY",
"ERA",
"FBT",
"TD",
"FIX",
"PLW",
"PLR",
"RUF009",
"PTH",
"PD",
"C901",
"ANN",
"ANN003",
"ANN002",
"ARG004",
"G004",
"S",
"BLE001",
"COM812",
"ISC001",
"RET",
]
lint.select = ["ALL"]
lint.fixable = ["ALL"]
lint.unfixable = []
exclude = [".git", ".idea", ".mypy_cache", ".tox", ".venv"]
target-version = "py311"
line-length = 128
indent-width = 4
[tool.ruff.format]
quote-style = "double"
docstring-code-format = true
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning::",
"ignore::FutureWarning::",
]
addopts = "--cov --cov-report=lcov:coverage.info --cov-report=term"
[tool.coverage.run]
source = ["oxb_data_analysis"]