Skip to content

Commit

Permalink
Simplify Prettier and ESLint commands
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrotoff committed Jul 6, 2023
1 parent 03a6cbf commit c98bd8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
"tsc:examples": "npm run tsc:example:web && npm run tsc:example:node",
"tsc:example:web": "cd examples/web && npm run tsc",
"tsc:example:node": "cd examples/node && npm run tsc",
"format": "prettier --write '**/*'",
"lint": "npm run tsc && eslint . '**/*.{js,ts}'",
"format": "prettier --write .",
"lint": "npm run tsc && eslint .",
"prepare": "husky install",
"precommit": "npm run lint && npm run tsc:examples",
"prepush": "npm run test",
Expand Down

0 comments on commit c98bd8f

Please sign in to comment.