Add stylelint

This commit is contained in:
Vitaly Rtishchev
2023-11-15 11:02:16 +04:00
parent bd385eae7f
commit 8ee9720044
5 changed files with 652 additions and 15 deletions
+4 -1
View File
@@ -8,7 +8,8 @@
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "next lint",
"lint": "next lint && npm run lint:stylelint",
"lint:stylelint": "stylelint '**/*.css' --cache",
"jest": "jest",
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
@@ -62,6 +63,8 @@
"prettier": "^3.0.3",
"storybook": "^7.5.2",
"storybook-dark-mode": "^3.0.1",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"ts-jest": "^29.1.1",
"typescript": "5.2.2"
},