From e92503010cd46919e49b256e892fcf34204be6fa Mon Sep 17 00:00:00 2001 From: Restioson Date: Thu, 7 Nov 2024 12:28:12 +0200 Subject: [PATCH] fixup! lint: include many more lints --- app/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pyproject.toml b/app/pyproject.toml index 49d7d6d..063daac 100644 --- a/app/pyproject.toml +++ b/app/pyproject.toml @@ -9,5 +9,5 @@ extend-select = [ "W", # General - pycodestyle - https://docs.astral.sh/ruff/rules/#pycodestyle-e-w "S", # Security - flake-8-bandit https://docs.astral.sh/ruff/rules/#flake8-bandit-s "F", # General - Pyflakes - https://docs.astral.sh/ruff/rules/#pyflakes-f - "A" # Shadowing of builtins - flake-8-builtins - https://docs.astral.sh/ruff/rules/#flake8-builtins-a + "A", # Shadowing of builtins - flake-8-builtins - https://docs.astral.sh/ruff/rules/#flake8-builtins-a ]