From 795d5df5abe27aadad7c6793521974645c8fcf88 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 24 Aug 2024 23:28:38 +0300 Subject: [PATCH] Enforce more ruff rules --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 45628b05..eda2f4a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,11 +92,16 @@ extend-exclude = ["src/wheel/vendored"] [tool.ruff.lint] extend-select = [ "B", # flake8-bugbear + "FLY", # flynt "G", # flake8-logging-format "I", # isort "ISC", # flake8-implicit-str-concat + "PERF", # Perflint "PGH", # pygrep-hooks + "PIE", # flake8-pie + "PLC", # Pylint "RUF100", # unused noqa (yesqa) + "TCH", # flake8-type-checking "UP", # pyupgrade "W", # pycodestyle warnings ]