From abae734e498eedc95537e2579101f56e32d75a26 Mon Sep 17 00:00:00 2001 From: Martin Bernstorff Date: Fri, 27 Oct 2023 19:17:23 +0000 Subject: [PATCH] ci: simplify --- makefile | 4 +++- pyproject.toml | 5 ----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/makefile b/makefile index 0f59df4b..d6b7b627 100644 --- a/makefile +++ b/makefile @@ -16,7 +16,9 @@ test: ## Run tests lint: ## Format code ruff format . - ruff . --fix --extend-select F401 + ruff . --fix \ + --extend-select F401 \ + --extend-select F841 type-check: ## Type-check code pyright $(SRC_PATH) diff --git a/pyproject.toml b/pyproject.toml index f3bcea6b..fbd7e780 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,7 +75,6 @@ select = [ "PLW", "PT", "UP", - "Q", "PTH", "RSE", "RET", @@ -93,10 +92,6 @@ ignore = [ "RET504", "COM812", "COM819", - "Q000", - "Q001", - "Q002", - "Q003", "W191", ] ignore-init-module-imports = true