mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 14:52:01 +00:00
18 lines
247 B
TOML
18 lines
247 B
TOML
[project]
|
|
name = "scripts"
|
|
version = "0.0.1"
|
|
dependencies = ["sphinx"]
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
select = ["ALL"]
|
|
ignore = [
|
|
"PL", # pylint
|
|
"S", # bandit
|
|
]
|
|
|
|
[tool.ruff.pydocstyle]
|
|
convention = "pep257"
|