You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`flags`|`Map<string, string>`|`<empty>`| Special oxc language server flags, currently only one flag key is supported: `disable_nested_config`|
30
30
|`fmt.experimental`|`true`\|`false`|`false`| Enables experimental formatting with `oxc_formatter`|
31
+
|`fmt.configPath`|`<string>`\|`null`|`null`| Path to a oxfmt configuration file, when `null` is passed, the server will use `.oxftmrc.json` and the workspace root |
31
32
32
33
## Supported LSP Specifications from Server
33
34
@@ -47,7 +48,8 @@ The client can pass the workspace options like following:
47
48
"unusedDisableDirectives": "allow",
48
49
"typeAware": false,
49
50
"flags": {},
50
-
"fmt.experimental": false
51
+
"fmt.experimental": false,
52
+
"fmt.configPath": null
51
53
}
52
54
}]
53
55
}
@@ -84,7 +86,8 @@ The client can pass the workspace options like following:
84
86
"unusedDisableDirectives": "allow",
85
87
"typeAware": false,
86
88
"flags": {},
87
-
"fmt.experimental": false
89
+
"fmt.experimental": false,
90
+
"fmt.configPath": null
88
91
}
89
92
}]
90
93
}
@@ -178,6 +181,7 @@ The client can return a response like:
0 commit comments