Skip to content

Commit

Permalink
Add prettier to lint scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jeppester committed Oct 25, 2024
1 parent 9299fdf commit 3a7b363
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 @@ -9,8 +9,8 @@
"build": "node ace build",
"dev": "node ace serve --hmr",
"test": "node ace test",
"lint": "eslint . && stylelint inertia/**/*.scss",
"lint-fix": "eslint . --fix && stylelint inertia/**/*.scss --fix",
"lint": "prettier . --check && eslint . && stylelint inertia/**/*.scss",
"lint-fix": "prettier . --write && eslint . --fix && stylelint inertia/**/*.scss --fix",
"format": "prettier --write .",
"typecheck": "tsc --noEmit"
},
Expand Down

0 comments on commit 3a7b363

Please sign in to comment.