osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/43119?usp=email )
Change subject: ruff: ignore new failing default rules ......................................................................
ruff: ignore new failing default rules
With the new ruff 0.16 version, a lot of new default rules have been added. Ignore the ones that are failing for now to make the linter pass again.
Related: https://astral.sh/blog/ruff-v0.16.0#better-default-rule-set Change-Id: If95dc72c1826b4b96961453b2c2ed1d2c81ba149 --- M .ruff.toml 1 file changed, 23 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/19/43119/1
diff --git a/.ruff.toml b/.ruff.toml index ad8c0b5..ad4de47 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -2,3 +2,26 @@ exclude = [ "compare-results.py", ] + +[lint] +ignore = [ + "B006", + "B026", + "BLE001", + "DTZ001", + "DTZ004", + "DTZ005", + "DTZ007", + "FURB105", + "I001", + "LOG015", + "PIE808", + "PLC0206", + "PLW0602", + "PLW1510", + "RUF012", + "SIM102", + "SIM103", + "SIM118", + "UP032", +]