From 705f0e86ac64ef4f14c770778fea288eecd47d28 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 21 Apr 2025 21:22:32 -0400 Subject: [PATCH] Drop variable regex from `ruff.toml` Same as in other projects, seems to be not parsing and causing `ruff` to crash?!? --- ruff.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ruff.toml b/ruff.toml index 4b40c900..01873dab 100644 --- a/ruff.toml +++ b/ruff.toml @@ -62,8 +62,9 @@ ignore-init-module-imports = false fixable = ["ALL"] unfixable = [] +# TODO? uhh why no work!? # Allow unused variables when underscore-prefixed. -dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" +# dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" [format] # Use single quotes in `ruff format`.