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