16 lines
267 B
TOML
16 lines
267 B
TOML
[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"
|