From 338f22307035ed23384f5edaf811791b43631e00 Mon Sep 17 00:00:00 2001 From: raffaella Date: Thu, 15 Feb 2024 18:27:54 +0100 Subject: [PATCH] fix: update pyproject.toml to solve issue 216 --- pyproject.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a10167b..0eda7a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,14 +10,14 @@ select=[ "PLR", # pylint refactor "PLW", # pylint warning "UP", # pyupgrade + ] extend-ignore = [ - "PLR0915", - "C901", - "PLR0913", - "PLW1510", - "I001" , - "PLR0912" , - "E501" + "PLR0915", # too many statement + "C901", # complex-structure + "PLR0913", # too many arguments + "PLW1510", # subprocess-run-without-check + "PLR0912" , # too-many-branches + ]