From 507e6469b89235fcb7daf4bbf4375e4dd698a2dd Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Tue, 7 May 2024 21:52:09 -0300 Subject: [PATCH 1/2] adding eslintignore extensions --- .eslintignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.eslintignore b/.eslintignore index 9581c2fd7b508..f12bda4122e72 100644 --- a/.eslintignore +++ b/.eslintignore @@ -3,3 +3,11 @@ node_modules package-lock.json pnpm-lock.yaml platform/dist +*.md +*.txt +*.yml +*.yaml +*.lock +*.py +*.png + From fdae626c32efa9e9472d9aa2b26d98212024e6e9 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Tue, 7 May 2024 21:52:31 -0300 Subject: [PATCH 2/2] Adding quiet to suppress non-error warnings --- .github/workflows/pull-request-checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-checks.yaml b/.github/workflows/pull-request-checks.yaml index 12a90e3ad68e1..800368824be90 100644 --- a/.github/workflows/pull-request-checks.yaml +++ b/.github/workflows/pull-request-checks.yaml @@ -94,7 +94,7 @@ jobs: with: format: 'space-delimited' - name: Lint changed files - run: npx eslint ${{ steps.changed_files_space.outputs.added_modified }} ${{ steps.changed_files_space.outputs.renamed }} + run: npx eslint --quiet ${{ steps.changed_files_space.outputs.added_modified }} ${{ steps.changed_files_space.outputs.renamed }} - name: Get Changed Files (comma-separated) id: changed_files uses: jitterbit/get-changed-files@v1