forked from FoundKeyGang/FoundKey
chore(lint): fix lint commands
setups like src/**/*.{ext1,ext2} are not guaranteed to affect top level files such as src/a.ext1 this should also be slightly more performant
This commit is contained in:
parent
149ccb80a9
commit
db2bf0ac16
3 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
|||
"scripts": {
|
||||
"build": "tsc -p tsconfig.json || echo done. && tsc-alias -p tsconfig.json",
|
||||
"watch": "node watch.mjs",
|
||||
"lint": "eslint --quiet \"src/**/*.ts\"",
|
||||
"lint": "eslint --quiet src --ext .ts",
|
||||
"mocha": "cross-env NODE_ENV=test TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true TS_NODE_PROJECT=\"./test/tsconfig.json\" mocha",
|
||||
"test": "npm run mocha"
|
||||
},
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"scripts": {
|
||||
"watch": "vite build --watch --mode development",
|
||||
"build": "vite build",
|
||||
"lint": "eslint --quiet \"src/**/*.{ts,vue}\""
|
||||
"lint": "eslint --quiet src --ext .ts,.vue"
|
||||
},
|
||||
"resolutions": {
|
||||
"chokidar": "^3.3.1",
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"scripts": {
|
||||
"watch": "node build.js watch",
|
||||
"build": "node build.js",
|
||||
"lint": "eslint --quiet src/**/*.{ts}"
|
||||
"lint": "eslint --quiet src --ext .ts"
|
||||
},
|
||||
"resolutions": {},
|
||||
"dependencies": {
|
||||
|
|
Loading…
Reference in a new issue