From fcf9658f8f361ee5bed0df0e2546416c8f54c1c2 Mon Sep 17 00:00:00 2001 From: correctmost <134317971+correctmost@users.noreply.github.com> Date: Sun, 1 Dec 2024 01:50:33 -0500 Subject: [PATCH] Disable some rules that warn when using ruff's preview mode (#2985) --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index e3651a68..819517da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -206,6 +206,10 @@ select = [ ignore = [ "E722", # bare-except + "PLC0415", # import-outside-top-level + "PLC1901", # compare-to-empty-string + "PLW1514", # unspecified-encoding + "PLW1641", # eq-without-hash "PLW2901", # redefined-loop-name "RUF005", # collection-literal-concatenation "RUF012", # mutable-class-default