diff --git a/web/.eslintignore b/web/.eslintignore new file mode 100644 index 000000000..bb613d599 --- /dev/null +++ b/web/.eslintignore @@ -0,0 +1,3 @@ +# Ignore artifacts: +node_modules +out diff --git a/web/.github/workflows/linter.yml b/web/.github/workflows/linter.yml index f81ac136d..6e9248194 100644 --- a/web/.github/workflows/linter.yml +++ b/web/.github/workflows/linter.yml @@ -17,5 +17,7 @@ jobs: - name: Run ESLint on changed files uses: tj-actions/eslint-changed-files@v4 with: + config-path: '.eslintrc.js' + ignore-path: '.eslintignore' extensions: 'ts,tsx,js,jsx' extra-args: '--max-warnings=0' \ No newline at end of file