This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch enable_ruff_rules in repository https://gitbox.apache.org/repos/asf/superset.git
commit 9efa2fa744e984c48525d30e8e03225f3f27cc20 Author: Maxime Beauchemin <[email protected]> AuthorDate: Fri Dec 13 12:56:27 2024 -0800 chore: enable more ruff lint rules --- pyproject.toml | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ca0d66a4b6..a49ccd372a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -287,19 +287,18 @@ select = [ "E9", "PT009", "TRY201", - # TODO add these rules in follow up PR - # "B", - # "C", - # "E", - # "F", - #"F", - # "I", - # "N", - # "PT", - # "Q", - # "S", - # "T", - #"W", + "B", + "C", + "E", + "F", + "F", + "I", + "N", + "PT", + "Q", + "S", + "T", + "W", ] ignore = [ "S101",
