From 14c8be1a971b772f9a760d6cc6c273753afae63e Mon Sep 17 00:00:00 2001 From: Avasam Date: Mon, 31 Mar 2025 18:34:33 -0400 Subject: [PATCH] Enable Ruff groups we already pass --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 3cfcddda7b5f..71134f492845 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,16 +47,23 @@ select = [ "A", # flake8-builtins "ARG", # flake8-unused-arguments "B", # flake8-bugbear + "C4", # flake8-comprehensions "D", # pydocstyle + "DTZ", # flake8-datetimez "EXE", # flake8-executable "FA", # flake8-future-annotations + "FBT", # flake8-boolean-trap + "FLY", # flynt "I", # isort "N", # pep8-naming "PGH", # pygrep-hooks "PLC", # Pylint Convention "PLE", # Pylint Error "PLR", # Pylint Refactor + "RSE", # flake8-raise "RUF", # Ruff-specific and unused-noqa + "SLOT", # flake8-slots + "T10", # flake8-debugger "TRY", # tryceratops "UP", # pyupgrade "YTT", # flake8-2020