From d48699e5fda1812366874fb7943eba58c22551c9 Mon Sep 17 00:00:00 2001 From: Alfred Wingate Date: Thu, 16 Nov 2023 05:02:30 +0200 Subject: [PATCH] Enable all pycodestyle checks in ruff Signed-off-by: Alfred Wingate --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d536359..43688b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,3 +40,6 @@ src_paths = ["bin/euscan", "src/euscan/"] [tool.ruff] extend-include = ["bin/euscan", "bin/euscan_patch_metadata"] + +[tool.ruff.lint] +extend-select = ["E", "W"]