From 3ddde212b8d8774e362f43761f76fb4e3d44eee4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yvonne=20Fr=C3=B6hlich?= Date: Mon, 30 Oct 2023 17:50:16 +0100 Subject: [PATCH] Add ruff's 'NPY' check to 'selct' in 'pyproject.toml' --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 054a4d2d395..91d3c15a0ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,6 +92,7 @@ select = [ "E", # pycodestyle "F", # pyflakes "I", # isort + "NPY", # numpy "UP", # pyupgrade "W", # pycodestyle warnings ]