ci: run typecheck and eslint separately (#9966)
* ci: run typecheck and eslint separately * fix syntax
This commit is contained in:
parent
8f9ce23e52
commit
dd52be3a01
4 changed files with 13 additions and 4 deletions
|
@ -4,7 +4,9 @@
|
|||
"scripts": {
|
||||
"watch": "vite",
|
||||
"build": "vite build",
|
||||
"lint": "vue-tsc --noEmit && eslint --quiet \"src/**/*.{ts,vue}\""
|
||||
"typecheck": "vue-tsc --noEmit",
|
||||
"eslint": "eslint --quiet \"src/**/*.{ts,vue}\"",
|
||||
"lint": "pnpm typecheck && pnpm eslint"
|
||||
},
|
||||
"dependencies": {
|
||||
"@discordapp/twemoji": "14.0.2",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue