Skip to content

Commit

Permalink
client: Add npm linting scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
junhaoliao committed Sep 14, 2024
1 parent fb28bad commit 70b9d7b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
"eject": "react-scripts eject",

"lint": "npm run lint:check",
"lint:check": "eslint src",
"lint:ci": "npm run lint:check -- --format json --output-file eslint-report.json",
"lint:fix": "npm run lint:check -- --fix"
},
"dependencies": {
"@emotion/react": "^11.10.5",
Expand Down

0 comments on commit 70b9d7b

Please sign in to comment.