Skip to content

Commit

Permalink
Fixed stylelint commands
Browse files Browse the repository at this point in the history
  • Loading branch information
silversonicaxel committed May 7, 2024
1 parent a34a291 commit 95027de
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 @@ -8,10 +8,10 @@
"start": "next start",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "next lint",
"lint:css": "stylelint **/*.css",
"lint:css": "stylelint \"**/*.css\"",
"fix": "npm run fix:js && npm run fix:css",
"fix:js": "next lint --fix",
"fix:css": "stylelint **/*.css --fix",
"fix:css": "stylelint \"**/*.css\" --fix",
"test": "vitest"
},
"dependencies": {
Expand Down

0 comments on commit 95027de

Please sign in to comment.