mirror of
https://github.com/astral-sh/ruff
synced 2026-01-08 15:14:19 -05:00
13 lines
231 B
TOML
13 lines
231 B
TOML
[tool.ruff]
|
|
select = ["ALL"]
|
|
ignore = [
|
|
"E501", # line-too-long
|
|
"INP001", # implicit-namespace-package
|
|
"PLR2004", # magic-value-comparison
|
|
"S101", # assert-used
|
|
"EM"
|
|
]
|
|
|
|
[tool.ruff.pydocstyle]
|
|
convention = "pep257"
|