We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fec96c2 commit ef72e99Copy full SHA for ef72e99
1 file changed
web/package.json
@@ -7,10 +7,13 @@
7
"serve": "vite",
8
"serve:prod": "vite preview",
9
"build": "vite build",
10
- "test:lint": "eslint . --no-fix",
+ "test:format": "prettier --experimental-cli --check .",
11
+ "test:lint": "eslint --no-fix .",
12
"test:type": "vue-tsc --build",
- "test": "npm-run-all test:lint test:type",
13
- "format": "eslint . --fix"
+ "test": "npm-run-all test:format test:lint test:type",
14
+ "format:lint": "eslint --fix .",
15
+ "format:format": "prettier --experimental-cli --write .",
16
+ "format": "npm-run-all format:lint format:format"
17
},
18
"dependencies": {
19
"@mdi/font": "7.4.47",
0 commit comments