From 4ce23c9953cbc3fe21ff7edb14df6e91c542657b Mon Sep 17 00:00:00 2001 From: Marc Wrobel Date: Sat, 30 Dec 2023 11:48:51 +0100 Subject: [PATCH] Enable flake8-self linting rules (#267) See https://docs.astral.sh/ruff/rules/#flake8-self-slf. --- .ruff.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.ruff.toml b/.ruff.toml index 263b111e..58583973 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -17,6 +17,7 @@ select = [ "N", # pep8-naming "PIE", # flake8-pie "PGH", # pygrep-hooks + "SLF", # flake8-self "RET", # flake8-return "RUF100", # unused noqa (yesqa) "T10", # flake8-debugger