-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 744 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 744 Bytes
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
[project]
name = "todo-md-tests"
version = "2.0.3"
description = "TODO.md test suit see ./tests"
readme = "README.md"
requires-python = ">=3.13"
dependencies = []
[dependency-groups]
dev = [
"inline-snapshot>=0.19.3",
"mypy>=1.14.1",
"pytest>=8.3.4",
"ruff>=0.9.2",
]
[tool.mypy]
explicit_package_bases = true
warn_unused_ignores = true
[tool.pytest.ini_options]
testpaths = ["tests"]
verbosity_assertions = 2
verbosity_test_cases = 2
[tool.ruff.lint]
extend-select = ["I", "UP", "RUF"]
[tool.ruff.lint.isort]
lines-after-imports = 2
split-on-trailing-comma = false
[tool.ruff.format]
quote-style = "single"
skip-magic-trailing-comma = true
[tool.inline-snapshot]
format-command="ruff format --stdin-filename {filename}"