Skip to content

Commit 7cb53c1

Browse files
committed
Merge branch 'master' into completion
2 parents 41ed2e3 + 931d4df commit 7cb53c1

30 files changed

+1860
-1284
lines changed

.github/workflows/CD.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v4
20+
with:
21+
show-progress: false
2022

2123
- uses: actions/setup-node@v4
2224
with:
@@ -25,7 +27,8 @@ jobs:
2527
registry-url: https://registry.npmjs.org
2628

2729
- run: npm ci
28-
- run: npm run compile
30+
- run: npm run ci
31+
- run: npm run build
2932
- run: npm test
3033
env:
3134
CI: true

.github/workflows/CI.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,17 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v4
15+
with:
16+
show-progress: false
1517

1618
- uses: actions/setup-node@v4
1719
with:
1820
node-version: ${{ matrix.node-version }}
1921
cache: npm
2022

2123
- run: npm ci
22-
- run: npm run compile
24+
- run: npm run ci
25+
- run: npm run build
2326
- run: npm test
2427
env:
2528
CI: true

.github/workflows/auto-merge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- id: metadata
19-
uses: dependabot/fetch-metadata@v1
19+
uses: dependabot/fetch-metadata@v2
2020

2121
- name: Enable auto-merge for Dependabot PRs
2222
if: ${{ steps.metadata.outputs.update-type == 'version-update:semver-patch' }}

biome.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/1.5.0/schema.json",
3+
"formatter": {
4+
"enabled": true,
5+
"indentWidth": 4,
6+
"indentStyle": "tab",
7+
"lineWidth": 100
8+
},
9+
"vcs": {
10+
"enabled": true,
11+
"clientKind": "git",
12+
"defaultBranch": "master",
13+
"root": "."
14+
},
15+
"linter": {
16+
"enabled": true,
17+
"rules": {
18+
"recommended": true,
19+
"suspicious": {
20+
"noConstEnum": "off",
21+
"noDebugger": "off"
22+
},
23+
"correctness": {
24+
"noVoidTypeReturn": "off"
25+
}
26+
}
27+
},
28+
"javascript": {
29+
"formatter": {
30+
"arrowParentheses": "asNeeded"
31+
}
32+
},
33+
"overrides": [
34+
{
35+
"include": [
36+
"src/scanner.ts"
37+
],
38+
"linter": {
39+
"rules": {
40+
"suspicious": {
41+
"noAssignInExpressions": "off"
42+
},
43+
"style": {
44+
"noParameterAssign": "off"
45+
}
46+
}
47+
}
48+
}
49+
]
50+
}

0 commit comments

Comments
 (0)