From ee5ad3d124ed67b35cc9a50d4097bdcca2bb3b75 Mon Sep 17 00:00:00 2001 From: Gabriel Barberini Date: Sat, 16 Sep 2023 12:43:01 -0300 Subject: [PATCH] Update pylint.yml remove unecesary pylint rules --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 096f657..ca826c9 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -21,4 +21,4 @@ jobs: pip install -r requirements.txt - name: Analysing the code with pylint run: | - pylint -d C0301,C0114 $(git ls-files '*.py') + pylint -d C0301,C0114,R0903,C0115,W0246 $(git ls-files '*.py')