ruff/scripts/pyproject.toml
2023-06-22 15:52:03 +00:00

27 lines
493 B
TOML

[project]
name = "scripts"
version = "0.0.1"
dependencies = ["sphinx"]
requires-python = ">=3.8"
[tool.black]
line-length = 88
[tool.ruff]
line-length = 88
select = ["ALL"]
ignore = [
"C901", # McCabe complexity
"D", # pydocstyle
"PL", # pylint
"S", # bandit
"G", # flake8-logging
"T", # flake8-print
"FBT", # flake8-boolean-trap
]
[tool.ruff.isort]
required-imports = ["from __future__ import annotations"]
[tool.ruff.pydocstyle]
convention = "pep257"