mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-30 07:08:07 +00:00
20 lines
339 B
TOML
20 lines
339 B
TOML
[project]
|
|
name = "scripts"
|
|
version = "0.0.1"
|
|
dependencies = ["sphinx"]
|
|
|
|
[tool.ruff]
|
|
select = ["ALL"]
|
|
ignore = [
|
|
"E501", # line-too-long
|
|
"INP001", # implicit-namespace-package
|
|
"PL", # pylint
|
|
"S101", # assert-used
|
|
"EM", # errmgs
|
|
]
|
|
unfixable = [
|
|
"RUF100", # unused-noqa
|
|
]
|
|
|
|
[tool.ruff.pydocstyle]
|
|
convention = "pep257"
|