From 0eeb833b823976e14917b17faddbea96cf1d5719 Mon Sep 17 00:00:00 2001 From: Christian Feldmann Date: Fri, 20 Sep 2024 15:44:03 +0200 Subject: [PATCH] adapt pylint command --- .github/workflows/linting.yml | 2 +- pylint.rc | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 pylint.rc diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 8ff938f3..f2a01618 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -22,7 +22,7 @@ jobs: pip install pylint - name: Analysing the code with pylint run: | - pylint -d C0301,R0913,W1202 $(git ls-files '*.py') --ignored-modules "rdkit" + pylint -d C0301,R0913,W1202 $(git ls-files '*.py') --ignored-modules "rdkit" --max-positional-arguments 10 mypy: runs-on: ubuntu-latest steps: diff --git a/pylint.rc b/pylint.rc deleted file mode 100644 index 0e7f31ab..00000000 --- a/pylint.rc +++ /dev/null @@ -1,2 +0,0 @@ -[master] -max-positional-arguments=10 \ No newline at end of file