diff --git a/scripts/pyproject.toml b/scripts/pyproject.toml index 51916374dc..1797db1d38 100644 --- a/scripts/pyproject.toml +++ b/scripts/pyproject.toml @@ -1,11 +1,14 @@ [tool.ruff] select = ["ALL"] ignore = [ - "E501", # line-too-long - "INP001", # implicit-namespace-package - "PLR2004", # magic-value-comparison - "S101", # assert-used - "EM" + "E501", # line-too-long + "INP001", # implicit-namespace-package + "PL", # pylint + "S101", # assert-used + "EM", # errmgs +] +unfixable = [ + "RUF100", # unused-noqa ] [tool.ruff.pydocstyle]