this repo has no description
0
fork

Configure Feed

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

Add husky, lint-staged

alice eca8c20e f0cb7655

+11 -1
+2
.husky/pre-commit
··· 1 + # shellcheck disable=SC2148 2 + bunx lint-staged
+9 -1
package.json
··· 4 4 "type": "module", 5 5 "scripts": { 6 6 "start": "npx tsx src/main.ts", 7 - "dev": "npx tsx --watch src/main.ts" 7 + "dev": "npx tsx --watch src/main.ts", 8 + "format": "bunx prettier --write .", 9 + "lint": "bunx eslint .", 10 + "lint:fix": "bunx eslint --fix ." 11 + }, 12 + "lint-staged": { 13 + "*": "prettier --ignore-unknown --write" 8 14 }, 9 15 "devDependencies": { 10 16 "@eslint/js": "^9.11.1", ··· 25 31 "@skyware/labeler": "^0.1.7", 26 32 "dotenv": "^16.4.5", 27 33 "express": "^4.21.0", 34 + "husky": "^9.1.6", 35 + "lint-staged": "^15.2.10", 28 36 "pino": "^9.4.0", 29 37 "pino-pretty": "^11.2.2", 30 38 "prom-client": "^15.1.3"