Skip to content

Commit

Permalink
refactor(functions): consolidate lint checks
Browse files Browse the repository at this point in the history
  • Loading branch information
jlucktay committed Feb 10, 2024
1 parent c79a661 commit 48012fc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ jobs:

- run: yarn install --immutable

- run: yarn prettier --check .

- run: yarn lint

- run: yarn test
Expand Down
2 changes: 1 addition & 1 deletion functions/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "functions",
"scripts": {
"lint": "eslint --config .eslintrc.js --ext .ts .",
"lint": "prettier --check . && eslint --config .eslintrc.js --ext .ts .",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
Expand Down

0 comments on commit 48012fc

Please sign in to comment.