File tree Expand file tree Collapse file tree 7 files changed +135
-1083
lines changed
Expand file tree Collapse file tree 7 files changed +135
-1083
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,21 @@ defaults:
2121 working-directory : substitute
2222
2323jobs :
24- autofix :
25- uses : ./.github/workflows/autofix.yaml
26- with :
27- working-directory : substitute
24+ lint :
25+ runs-on : ubuntu-latest
26+ timeout-minutes : 10
27+ permissions :
28+ contents : write
29+ pull-requests : write
30+ steps :
31+ - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
32+ - uses : actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
33+ with :
34+ node-version-file : .node-version
35+ - run : npm install -g pnpm@latest-10
36+ - run : pnpm i
37+ - run : pnpm check --fix
38+ - uses : int128/update-generated-files-action@f6dc44e35ce252932e9018f1c38d1e2a4ff80e14 # v2.60.0
2839
2940 test :
3041 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://biomejs.dev/schemas/2.3.7/schema.json" ,
3+ "vcs" : {
4+ "enabled" : true ,
5+ "clientKind" : " git" ,
6+ "root" : " .."
7+ },
8+ "formatter" : {
9+ "indentStyle" : " space" ,
10+ "lineWidth" : 120
11+ },
12+ "linter" : {
13+ "enabled" : true
14+ },
15+ "javascript" : {
16+ "formatter" : {
17+ "quoteStyle" : " single" ,
18+ "semicolons" : " asNeeded"
19+ }
20+ }
21+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 44 "private" : true ,
55 "type" : " module" ,
66 "scripts" : {
7- "format" : " prettier --write **/*.ts" ,
8- "lint" : " eslint --fix **/*.ts" ,
7+ "check" : " biome check" ,
98 "build" : " ncc build --source-map --license licenses.txt src/main.ts" ,
109 "test" : " vitest"
1110 },
1413 "@actions/glob" : " 0.5.0"
1514 },
1615 "devDependencies" : {
17- "@eslint/js " : " 9.35.0 " ,
16+ "@biomejs/biome " : " 2.3.7 " ,
1817 "@tsconfig/node20" : " 20.1.6" ,
1918 "@types/node" : " 20.19.24" ,
2019 "@vercel/ncc" : " 0.38.4" ,
21- "@vitest/eslint-plugin" : " 1.3.9" ,
22- "eslint" : " 9.35.0" ,
2320 "pnpm" : " 10.15.1" ,
24- "prettier" : " 3.6.2" ,
2521 "typescript" : " 5.9.2" ,
26- "typescript-eslint" : " 8.43.0" ,
2722 "vitest" : " 3.2.4"
2823 },
2924 "packageManager" :
" [email protected] "
You can’t perform that action at this time.
0 commit comments