build(scripts): add lint scripts to all, turbo lint tasks [skip ci]

This commit is contained in:
Elliot DeNolf
2024-08-28 21:55:34 -04:00
parent e375f6e727
commit 828f5d866d
36 changed files with 92 additions and 15 deletions

View File

@@ -45,6 +45,8 @@
"build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"clean": "rimraf {dist,*.tsbuildinfo}",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm clean && pnpm turbo build",
"test": "echo \"Error: no tests specified\""
},