From d6b34dfa642ff178f90ccb5a01eb59ca84bc374c Mon Sep 17 00:00:00 2001 From: Pieter De Gendt Date: Mon, 4 Nov 2024 15:12:49 +0100 Subject: [PATCH] project: Extend ruff check with Pyflakes Enable Pyflakes rules when running ruff check. Signed-off-by: Pieter De Gendt --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 63fd0fb..f3153cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,6 +53,7 @@ extend-select = [ "I", # isort "B", # flake8-bugbear "E", # pycodestyle errors + "F", # Pyflakes "UP", # pyupgrade "W", # pycodestyle warnings ]