Skip to content

Commit d0871f1

Browse files
committed
chore: update biome
1 parent 00f731a commit d0871f1

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.4.11/schema.json",
33
"formatter": {
44
"enabled": true,
55
"indentStyle": "tab"

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"@babel/preset-typescript": "^7.28.5",
6464
"@babel/runtime": "^7.28.4",
6565
"@babel/runtime-corejs3": "^7.28.4",
66-
"@biomejs/biome": "^2.4.6",
66+
"@biomejs/biome": "2.4.11",
6767
"@rspack/cli": "^1.7.0",
6868
"@rspack/core": "^1.7.0",
6969
"@types/ace": "^0.0.52",

src/cm/lsp/codeActions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,4 +415,4 @@ export async function performQuickFix(view: EditorView): Promise<boolean> {
415415
return showCodeActionsMenu(view);
416416
}
417417

418-
export { CODE_ACTION_KINDS, getCodeActionIcon, formatCodeActionKind };
418+
export { CODE_ACTION_KINDS, formatCodeActionKind, getCodeActionIcon };

src/cm/lsp/types.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ export type {
2121
LSPClient,
2222
LSPClientConfig,
2323
LSPClientExtension,
24+
LSPDiagnostic,
25+
LSPFormattingOptions,
26+
Position,
27+
Range,
28+
TextEdit,
2429
Transport,
2530
Workspace,
2631
WorkspaceFile,
27-
TextEdit,
28-
LSPFormattingOptions,
29-
LSPDiagnostic,
30-
Range,
31-
Position,
3232
};
3333

3434
export interface WorkspaceFileUpdate {

src/components/lspInfoDialog/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -704,5 +704,5 @@ function hasConnectedServers() {
704704
return relevantServers.length > 0;
705705
}
706706

707-
export { showLspInfoDialog, hasConnectedServers, addLspLog, getLspLogs };
707+
export { addLspLog, getLspLogs, hasConnectedServers, showLspInfoDialog };
708708
export default showLspInfoDialog;

src/components/terminal/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import TerminalManager from "./terminalManager";
88
import TerminalThemeManager from "./terminalThemeManager";
99

1010
export {
11+
DEFAULT_TERMINAL_SETTINGS,
1112
TerminalComponent,
1213
TerminalManager,
1314
TerminalThemeManager,
14-
DEFAULT_TERMINAL_SETTINGS,
1515
};
1616

1717
export default {

0 commit comments

Comments
 (0)