Skip to content

Commit

Permalink
fix: correct eslint commands
Browse files Browse the repository at this point in the history
  • Loading branch information
SudharakaP committed Dec 11, 2023
1 parent 27b768c commit 3b42e4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
with:
DECRYPTION_SECRET: ${{ secrets.DECRYPTION_SECRET }}

- run: npm run prettier:check -
- run: npm run prettier:check
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"start-checker": "node check-for-changes.mjs",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"eslint:quiet": "npm run lint -- --quiet",
"eslint:fix": "eslint . --ignore-path .gitignore --ext .mjs,.js --fix"
"eslint": "eslint . --ignore-path .gitignore --ext .mjs,.js",
"eslint:quiet": "npm run eslint -- --quiet",
"eslint:fix": "npm run eslint --fix"
}
}

0 comments on commit 3b42e4e

Please sign in to comment.