From 47ca985ae520daf2fef3b7afd4554c0cbd755a2e Mon Sep 17 00:00:00 2001 From: Nathan Weinberg Date: Wed, 25 Sep 2024 16:08:53 -0400 Subject: [PATCH] ci: fix lint action Signed-off-by: Nathan Weinberg --- .github/workflows/lint.yml | 2 ++ .pylintrc | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ca82f6a3..1f67c06a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,6 +12,7 @@ on: - 'pyproject.toml' - 'requirements*.txt' - 'tox.ini' + - '.pylintrc' - 'scripts/*.sh' # Used by this workflow - '.github/workflows/lint.yml' # This workflow pull_request: @@ -23,6 +24,7 @@ on: - 'pyproject.toml' - 'requirements*.txt' - 'tox.ini' + - '.pylintrc' - 'scripts/*.sh' # Used by this workflow - '.github/workflows/lint.yml' # This workflow diff --git a/.pylintrc b/.pylintrc index 77366973..3a06b346 100644 --- a/.pylintrc +++ b/.pylintrc @@ -433,6 +433,7 @@ disable=raw-checker-failed, inconsistent-return-statements, no-member, too-many-arguments, + too-many-positional-arguments, too-many-locals, too-many-branches, too-many-statements,