From dd1b7a8799a54af3c2010ba9bfd165e8cd8accd4 Mon Sep 17 00:00:00 2001 From: Taekyung Heo <7621438+TaekyungHeo@users.noreply.github.com> Date: Tue, 11 Jun 2024 10:28:21 -0400 Subject: [PATCH] Add ERA linter to report commented code --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2b879726..5aaa326c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ exclude = [ ] [tool.ruff.lint] -select = ["I", "B", "E", "F", "SIM", "W", "C90"] +select = ["I", "B", "E", "F", "SIM", "W", "C90", "ERA"] [tool.ruff.format] indent-style = "space"