-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (56 loc) · 1.27 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
[project]
name = "screenshot_mailinator_email"
version = "1.0.0"
requires-python = ">=3.13"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = "^3.13"
playwright = "1.49.1"
[tool.poetry.group.dev.dependencies]
ruff = "0.8.6"
vulture = "2.14"
pytest = "8.3.4"
pytest-cov = "6.0.0"
zizmor = "1.0.0"
[tool.ruff]
target-version = "py313"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812", # Ignore due to conflict with Ruff formatter
"ISC001", # Ignore due to conflict with Ruff formatter
"PLR2004", # Ignore magic value
"D104", # Ignore missing docstring in public package
"D100", # Ignore missing docstring in public module
"T201" # Ignore print statements
]
fixable = ["ALL"]
unfixable = []
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
]
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.lint.per-file-ignores]
"**test_*.py" = ["S101", "D102", "D103", "SLF001", "PT019"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.vulture]
ignore_names = ["side_effect"]