From 9732b92a4bbfab624e6767040ce93f449687510e Mon Sep 17 00:00:00 2001 From: Nathan Weinberg Date: Wed, 25 Sep 2024 14:10:48 -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 77c258c0..a2ce583b 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 ebf2001c..01a605d9 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,