From bc271bed0d413ec6746869cf68b686b4c0c533fc Mon Sep 17 00:00:00 2001 From: bahill Date: Mon, 29 Jan 2024 14:41:38 -0500 Subject: [PATCH] Adding config for pylint - ignoring check for unpacking parameters --- .github/linters/.pylintrc | 3 ++- .github/workflows/super_linter.yaml | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/linters/.pylintrc b/.github/linters/.pylintrc index f629dcb0..9b25dc98 100644 --- a/.github/linters/.pylintrc +++ b/.github/linters/.pylintrc @@ -421,7 +421,8 @@ disable=raw-checker-failed, suppressed-message, useless-suppression, deprecated-pragma, - use-symbolic-message-instead + use-symbolic-message-instead, + E1120 # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option diff --git a/.github/workflows/super_linter.yaml b/.github/workflows/super_linter.yaml index e31f6eb5..6e2cb618 100644 --- a/.github/workflows/super_linter.yaml +++ b/.github/workflows/super_linter.yaml @@ -59,4 +59,6 @@ jobs: VALIDATE_PYTHON_BLACK: false VALIDATE_PYTHON_MYPY: false DEFAULT_BRANCH: main - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + LINTER_RULES_PATH: ../linters + \ No newline at end of file