Skip to content

Commit ad79d1d

Browse files
committed
chore: update dependencies and remove patch for changelog
1 parent 86e36d3 commit ad79d1d

File tree

6 files changed

+427
-177
lines changed

6 files changed

+427
-177
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
3737
- name: 📜 Generate changelog and release notes
3838
run: |
39-
bunx changelogen --release --push
39+
bunx changelogen --hideAuthorEmail --release --push
4040
bunx changelogen github release --token ${{ secrets.GITHUB_TOKEN }}
4141
4242
- name: 📝 Get metadata

biome.jsonc

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.1.2/schema.json",
33
"formatter": {
44
"enabled": true,
55
"formatWithErrors": false,
@@ -10,16 +10,17 @@
1010
"attributePosition": "auto"
1111
},
1212
"files": {
13-
"ignore": [
14-
"lib",
15-
"bin",
16-
"coverage",
17-
"node_modules",
18-
"package.json",
19-
"bun.lock"
13+
"includes": [
14+
"**",
15+
"!**/lib",
16+
"!**/bin",
17+
"!**/coverage",
18+
"!**/node_modules",
19+
"!**/package.json",
20+
"!**/bun.lock"
2021
]
2122
},
22-
"organizeImports": { "enabled": true },
23+
"assist": { "actions": { "source": { "organizeImports": "on" } } },
2324
"linter": {
2425
"enabled": true,
2526
"rules": {
@@ -28,7 +29,6 @@
2829
"correctness": { "noUnsafeFinally": "error" },
2930
"security": { "noGlobalEval": "error" },
3031
"style": {
31-
"noVar": "error",
3232
"useBlockStatements": "off",
3333
"useConst": "error",
3434
"useNamingConvention": {
@@ -38,7 +38,8 @@
3838
},
3939
"suspicious": {
4040
"noDoubleEquals": "error",
41-
"useNamespaceKeyword": "error"
41+
"useNamespaceKeyword": "error",
42+
"noVar": "error"
4243
}
4344
}
4445
},

0 commit comments

Comments
 (0)