From dd2f465936619ac557ff583ed16502ba015f2490 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 101610cf..3fcbd98f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,6 +52,7 @@ line-length = 100 extend-select = [ "B", # flake8-bugbear "E", # pycodestyle errors + "F", # Pyflakes "UP", # pyupgrade "W", # pycodestyle warnings ]