From b232c43824b10d0ef331719c306e7f62e4c6aa90 Mon Sep 17 00:00:00 2001 From: Jonathan Plasse <13716151+JonathanPlasse@users.noreply.github.com> Date: Thu, 2 Feb 2023 21:58:11 +0100 Subject: [PATCH] Fix an error in scripts/add_rule.py (#2497) --- scripts/pyproject.toml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) 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]