Skip to content

Commit

Permalink
eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MothScientist committed Jan 5, 2025
1 parent 977bcf1 commit f549579
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '22'

- name: npm install
- name: Install ESLint
run: |
npm install
npm install eslint --global
- name: Lint with eslint
run: |
npx eslint . --ignore-pattern 'tests/**' # Запускаем ESLint, исключая папку tests
eslint . --ignore-pattern 'tests/**' # run ESLint, excluding the tests folder

0 comments on commit f549579

Please sign in to comment.