From c0b4abafd9cb70b5cbc0d940226050afc3cbc130 Mon Sep 17 00:00:00 2001 From: Gabriel Barberini Date: Sat, 16 Nov 2024 01:20:51 -0300 Subject: [PATCH] updates pylint ignore rules --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fa15f27..b3a6294 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ flake8: pylint: pylint ./lib || true - pylint --disable=E0401,W0621 ./tests || true + pylint --disable=E0401,W0621,R0913,R0917 ./tests || true ruff: ruff check --fix ./lib || true