Skip to content

Commit cdcce70

Browse files
Update package.json
Co-authored-by: Radu-Cristian Popa <radu.popa@breakpointit.eu>
1 parent 14d4ffc commit cdcce70

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111
"scripts": {
1212
"build": "tsx ./scripts/build.ts",
1313
"dev": "tsx ./scripts/dev.ts",
14-
"lint": "concurrently \"pnpm:lint:*(!fix)\"",
14+
"lint": "eslint . --cache --cache-location 'node_modules/.cache/eslintcache' --max-warnings 0",
15+
"lint:fix": "eslint . --fix --cache --cache-location 'node_modules/.cache/eslintcache' --max-warnings 0",
16+
"format": "prettier . --check --cache --cache-location='node_modules/.cache/prettiercache'",
17+
"format:fix": "prettier . --write --cache --cache-location='node_modules/.cache/prettiercache' --log-level=warn",
18+
"typecheck": "tsc --noEmit"
1519
"lint:fix": "eslint --ext js,jsx,ts,tsx, src --fix",
1620
"lint:eslint": "eslint . --ext .js,.ts,.tsx --max-warnings 0 --ignore-path .gitignore",
1721
"lint:prettier": "prettier \"**/*.(md|json|yml)\" --ignore-path .gitignore --check",

0 commit comments

Comments
 (0)