From 5d81f2559dad05e56d30a7ad2ad94db060ecbf03 Mon Sep 17 00:00:00 2001 From: trisdoan Date: Tue, 21 Apr 2026 22:56:45 +0700 Subject: [PATCH] chore(ruff): add PLC0415 pylint rule to linting config --- template/ruff.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/template/ruff.toml b/template/ruff.toml index 687d5b3..23fda6e 100644 --- a/template/ruff.toml +++ b/template/ruff.toml @@ -30,6 +30,8 @@ select = [ "PGH", # pyupgrade "UP", + # pylint + "PLC0415", # ruff "RUF", # tryceratops