osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-dev/+/43121?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: I7d22481e9238e8155beb923a120ac8baea21df9d --- M .ruff.toml 1 file changed, 10 insertions(+), 1 deletion(-) git pull ssh://gerrit.osmocom.org:29418/osmo-dev refs/changes/21/43121/1 diff --git a/.ruff.toml b/.ruff.toml index c673c3a..e39a704 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -13,7 +13,16 @@ [lint] # E741: Ambiguous variable name: `l` -ignore = ["E741"] +ignore = [ + "B026", + "E741", + "EXE001", + "I001", + "PLR1730", + "SIM103", + "SIM115", + "UP031", +] [format] exclude = [ -- To view, visit https://gerrit.osmocom.org/c/osmo-dev/+/43121?usp=email To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email Gerrit-MessageType: newchange Gerrit-Project: osmo-dev Gerrit-Branch: master Gerrit-Change-Id: I7d22481e9238e8155beb923a120ac8baea21df9d Gerrit-Change-Number: 43121 Gerrit-PatchSet: 1 Gerrit-Owner: osmith <[email protected]>
