-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (32 loc) · 825 Bytes
/
pyproject.toml
File metadata and controls
33 lines (32 loc) · 825 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
[project]
name = "python-verband"
version = "0.1.0"
description = "The python-verband.org website, which is powered by Lektor, a static website builder."
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["lektor>=3.3.12, <4", "lektor-markdown-header-anchors>=0.3.1"]
[tool.ruff.lint]
select = [
"F", # pyflakes
"E",
"W",
"E302", # pycodestyle
"A", # flake8-builtins
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
"ARG", # flake8-unused-arguments
"PL", # pylint
"TID", # tidy
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
]
ignore = [
"E501", # may cause conflicts with ruff formatter
"W191",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true