|
37 | 37 | "bump:dev": "ncu --upgrade --dep dev --target minor", |
38 | 38 | "bump:prod": "ncu --upgrade --dep prod --target minor", |
39 | 39 | "bump:all": "pnpm run bump:dev && pnpm run bump:prod", |
40 | | - "fix:style": "prettier --no-semi --print-width 100 --single-quote --trailing-comma none --write '**/*.ts' && standardx --fix '**/*.ts'", |
41 | | - "check:lint": "eslint --format=codeframe '**/*.ts' && standardx", |
| 40 | + "fix:style": "biome check --write .", |
| 41 | + "check:lint": "biome check .", |
42 | 42 | "commit": "cz", |
43 | 43 | "prerelease": "ts-node pre-release-steps.ts", |
44 | 44 | "test": "jest --verbose --collect-coverage" |
|
69 | 69 | ], |
70 | 70 | "lint-staged": { |
71 | 71 | "**/*.ts": [ |
72 | | - "pnpm run fix:style" |
| 72 | + "biome check --write --files" |
73 | 73 | ] |
74 | 74 | }, |
75 | 75 | "config": { |
|
113 | 113 | } |
114 | 114 | }, |
115 | 115 | "devDependencies": { |
| 116 | + "@biomejs/biome": "^1.8.3", |
116 | 117 | "@commitlint/cli": "^16.2.3", |
117 | 118 | "@commitlint/config-conventional": "^16.2.1", |
118 | 119 | "@types/jest": "^27.4.1", |
119 | 120 | "@types/node": "^17.0.23", |
120 | | - "@typescript-eslint/eslint-plugin": "^5.19.0", |
121 | | - "@typescript-eslint/parser": "^5.19.0", |
122 | 121 | "axios": "^0.26.1", |
123 | 122 | "commitizen": "^4.2.4", |
124 | 123 | "cz-conventional-changelog": "^3.3.0", |
125 | | - "eslint": "^8.13.0", |
126 | | - "eslint-config-standard-jsx": "^10.0.0", |
127 | | - "eslint-config-standard-with-typescript": "^21.0.1", |
128 | | - "eslint-formatter-codeframe": "^7.32.1", |
129 | | - "eslint-plugin-import": "^2.26.0", |
130 | | - "eslint-plugin-jest": "^26.1.4", |
131 | | - "eslint-plugin-node": "^11.1.0", |
132 | | - "eslint-plugin-promise": "6.0.0", |
133 | | - "eslint-plugin-react": "^7.29.4", |
134 | 124 | "file-to-sha512": "^0.0.1", |
135 | 125 | "husky": "^7.0.4", |
136 | 126 | "jest": "^27.5.1", |
137 | 127 | "lint-staged": "^12.3.7", |
138 | 128 | "npm-check-updates": "^12.5.9", |
139 | | - "prettier": "^2.6.2", |
140 | | - "standardx": "^7.0.0", |
141 | 129 | "ts-jest": "^27.1.4", |
142 | 130 | "ts-loader": "^9.2.8", |
143 | 131 | "ts-node": "^10.7.0", |
|
0 commit comments