From 637c65a2fafddc41ba38b6f5d30b63126c8a6391 Mon Sep 17 00:00:00 2001
From: lukken <lukken@astron.nl>
Date: Tue, 17 Jun 2025 11:42:51 +0200
Subject: [PATCH] Reintroduce ARG

---
 {{cookiecutter.project_slug}}/pyproject.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/{{cookiecutter.project_slug}}/pyproject.toml b/{{cookiecutter.project_slug}}/pyproject.toml
index 099404c..eaba689 100644
--- a/{{cookiecutter.project_slug}}/pyproject.toml
+++ b/{{cookiecutter.project_slug}}/pyproject.toml
@@ -25,7 +25,7 @@ exclude = [
 # Expand basic rules with name and style checks roughly equivalent to flake8 + black + pylint
 # Some additional functional errors such as `await` on none async or wrong return types / args.
 # More info https://docs.astral.sh/ruff/rules/
-select = ["N", "A", "E", "F", "B", "W", "Q", "PL", "ASYNC", "S", "G", "RET"]
+select = ["N", "A", "E", "F", "B", "W", "Q", "PL", "ASYNC", "S", "G", "RET", "ARG"]
 ignore = ["E203"]
 
 [tool.tox]
-- 
GitLab