Skip to content

Commit 50f9ca7

Browse files
chore(deps-dev): bump @biomejs/biome from 1.9.4 to 2.0.5 (#237)
* chore(deps-dev): bump @biomejs/biome from 1.9.4 to 2.0.5 Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 1.9.4 to 2.0.5. - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/@biomejs/[email protected]/packages/@biomejs/biome) --- updated-dependencies: - dependency-name: "@biomejs/biome" dependency-version: 2.0.5 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore: migrate to Biome 2 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Malcolm Nihlén <[email protected]>
1 parent cd5b6da commit 50f9ca7

File tree

4 files changed

+58
-45
lines changed

4 files changed

+58
-45
lines changed

biome.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.0.5/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",
66
"useIgnoreFile": true
77
},
8-
"organizeImports": {
9-
"enabled": true
8+
"assist": {
9+
"actions": {
10+
"source": {
11+
"organizeImports": "on"
12+
}
13+
}
1014
},
1115
"linter": {
1216
"enabled": true,
@@ -25,7 +29,7 @@
2529
},
2630
"overrides": [
2731
{
28-
"include": ["test/debug.js"],
32+
"includes": ["test/debug.js"],
2933
"formatter": {
3034
"lineWidth": 320
3135
}

package-lock.json

Lines changed: 36 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
"type": "git",
99
"url": "[email protected]:scriptcoded/sql-highlight.git"
1010
},
11-
"files": ["/lib"],
11+
"files": [
12+
"/lib"
13+
],
1214
"engines": {
1315
"node": ">=14"
1416
},
@@ -18,9 +20,16 @@
1820
"lint": "biome check",
1921
"lint:fix": "biome check --write"
2022
},
21-
"keywords": ["sql", "syntax", "highlight", "highlighter"],
23+
"keywords": [
24+
"sql",
25+
"syntax",
26+
"highlight",
27+
"highlighter"
28+
],
2229
"author": "Malcolm Nihlén <[email protected]>",
23-
"contributors": ["pomahtuk"],
30+
"contributors": [
31+
"pomahtuk"
32+
],
2433
"funding": [
2534
"https://github.com/scriptcoded/sql-highlight?sponsor=1",
2635
{
@@ -30,7 +39,7 @@
3039
],
3140
"license": "MIT",
3241
"devDependencies": {
33-
"@biomejs/biome": "1.9.4",
42+
"@biomejs/biome": "2.0.5",
3443
"@semantic-release/changelog": "^6.0.3",
3544
"@semantic-release/git": "^10.0.1",
3645
"jest": "^29.7.0",

release.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ module.exports = {
2525
{
2626
assets: ['CHANGELOG.md', 'package.json', 'package-lock.json'],
2727
message:
28+
// biome-ignore lint/suspicious/noTemplateCurlyInString: This is a template for semantic-release and not supposed to be a template literal
2829
'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}'
2930
}
3031
]

0 commit comments

Comments
 (0)