dev: specify correct path to linter
This commit is contained in:
parent
c75bee17a4
commit
3d78594d43
3 changed files with 7 additions and 8 deletions
|
@ -13,8 +13,8 @@
|
|||
"build": "pnpm tsc --project tsconfig.json ; pnpm tsc-alias --project tsconfig.json",
|
||||
"build:debug": "pnpm tsc --sourceMap --project tsconfig.json ; pnpm tsc-alias --project tsconfig.json",
|
||||
"watch": "pnpm tsc --project tsconfig.json --watch ; pnpm tsc-alias --project tsconfig.json --watch",
|
||||
"lint": "pnpm biome check --write **/*.ts",
|
||||
"format": "pnpm biome format * --write"
|
||||
"lint": "pnpm biome check --write src",
|
||||
"format": "pnpm biome format --write src"
|
||||
},
|
||||
"dependencies": {
|
||||
"@bull-board/api": "5.21.3",
|
||||
|
|
|
@ -8,10 +8,9 @@
|
|||
"build": "pnpm vite build",
|
||||
"build:debug": "pnpm run build",
|
||||
"lint": "pnpm run lint:ts ; pnpm run lint:vue",
|
||||
"lint:ts": "pnpm biome check **/*.ts --write",
|
||||
"lint:vue": "pnpm biome check **/*.vue --write",
|
||||
"types:check": "pnpm vue-tsc --noEmit",
|
||||
"format": "pnpm biome format * --write"
|
||||
"lint:ts": "pnpm biome check --write src/*.ts src/**/*.ts src/**/**/*.ts",
|
||||
"lint:vue": "pnpm vue-tsc --noEmit",
|
||||
"format": "pnpm biome format --write src"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@phosphor-icons/web": "2.1.1",
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
"scripts": {
|
||||
"build": "pnpm vite build --emptyOutDir",
|
||||
"build:debug": "pnpm run build",
|
||||
"lint": "pnpm biome check *.ts --apply",
|
||||
"format": "pnpm biome format * --write"
|
||||
"lint": "pnpm biome check --write src",
|
||||
"format": "pnpm biome format --write src"
|
||||
},
|
||||
"devDependencies": {
|
||||
"firefish-js": "workspace:*",
|
||||
|
|
Loading…
Reference in a new issue