Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1783ee1

Browse files
chore: fix biome error when running make lint (#20182)
Fixes a Biome lint error when running `make lint`.```> biome check --error-on-warnings --fix .biome.jsonc:6:13 deserialize ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ℹ The configuration schema version does not match the CLI version 2.2.4 4 │ "includes": ["!e2e/**/*Generated.ts"] 5 │ }, > 6 │ "$schema": "https://biomejs.dev/schemas/2.2.0/schema.json" │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 7 │ } 8 │ ℹ Expected: 2.2.4 Found: 2.2.0 ℹ Run the command biome migrate to migrate the configuration file. Checked 1165 files in 796ms. No fixes applied.```
1 parent33fbb17 commit1783ee1

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

‎biome.jsonc‎

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
"defaultBranch":"main"
77
},
88
"files": {
9-
"includes": [
10-
"**",
11-
"!**/pnpm-lock.yaml"
12-
],
9+
"includes": ["**","!**/pnpm-lock.yaml"],
1310
"ignoreUnknown":true
1411
},
1512
"linter": {
@@ -69,11 +66,7 @@
6966
"noConsole": {
7067
"level":"error",
7168
"options": {
72-
"allow": [
73-
"error",
74-
"info",
75-
"warn"
76-
]
69+
"allow": ["error","info","warn"]
7770
}
7871
}
7972
},
@@ -82,5 +75,5 @@
8275
}
8376
}
8477
},
85-
"$schema":"https://biomejs.dev/schemas/2.2.0/schema.json"
78+
"$schema":"./node_modules/@biomejs/biome/configuration_schema.json"
8679
}

‎site/biome.jsonc‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"files": {
44
"includes": ["!e2e/**/*Generated.ts"]
55
},
6-
"$schema":"https://biomejs.dev/schemas/2.2.0/schema.json"
6+
"$schema":"./node_modules/@biomejs/biome/configuration_schema.json"
77
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp