this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lint-staged

alice 836128a7 565459c2

+12 -9
+12 -9
package.json
··· 2 2 "name": "values", 3 3 "type": "module", 4 4 "private": true, 5 + "scripts": { 6 + "dev": "parcel ./index.html", 7 + "build": "parcel build ./index.html", 8 + "test": "bun test", 9 + "deploy": "bun test && bun run build && bunx wrangler pages deploy dist", 10 + "format": "bunx prettier --write .", 11 + "lint": "bunx eslint .", 12 + "lint:fix": "bunx eslint --fix .", 13 + "prepare": "husky" 14 + }, 5 15 "devDependencies": { 6 16 "@happy-dom/global-registrator": "^17.4.4", 7 17 "@types/bun": "^1.2.8", ··· 23 33 "parcel": "^2.14.4", 24 34 "wrangler": "^4.7.0" 25 35 }, 26 - "scripts": { 27 - "dev": "parcel ./index.html", 28 - "build": "parcel build ./index.html", 29 - "test": "bun test", 30 - "deploy": "bun test && bun run build && bunx wrangler pages deploy dist", 31 - "format": "bunx prettier --write .", 32 - "lint": "bunx eslint .", 33 - "lint:fix": "bunx eslint --fix .", 34 - "prepare": "husky" 36 + "lint-staged": { 37 + "*": "prettier --ignore-unknown --write --ignore-path .prettierignore" 35 38 } 36 39 }