Skip to content

Commit d10fb88

Browse files
chore: generate
1 parent 6b68b10 commit d10fb88

3 files changed

Lines changed: 13 additions & 5 deletions

File tree

packages/sdk/js/src/v2/gen/types.gen.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1592,6 +1592,9 @@ export type Config = {
15921592
enabled: boolean
15931593
}
15941594
}
1595+
/**
1596+
* Enable or configure formatters. Omit or set to false to disable, true to enable built-ins, or an object to enable built-ins with overrides.
1597+
*/
15951598
formatter?:
15961599
| boolean
15971600
| {
@@ -1604,6 +1607,9 @@ export type Config = {
16041607
extensions?: Array<string>
16051608
}
16061609
}
1610+
/**
1611+
* Enable or configure LSP servers. Omit or set to false to disable, true to enable built-ins, or an object to enable built-ins with overrides.
1612+
*/
16071613
lsp?:
16081614
| boolean
16091615
| {

packages/sdk/openapi.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11928,6 +11928,7 @@
1192811928
}
1192911929
},
1193011930
"formatter": {
11931+
"description": "Enable or configure formatters. Omit or set to false to disable, true to enable built-ins, or an object to enable built-ins with overrides.",
1193111932
"anyOf": [
1193211933
{
1193311934
"type": "boolean"
@@ -11970,6 +11971,7 @@
1197011971
]
1197111972
},
1197211973
"lsp": {
11974+
"description": "Enable or configure LSP servers. Omit or set to false to disable, true to enable built-ins, or an object to enable built-ins with overrides.",
1197311975
"anyOf": [
1197411976
{
1197511977
"type": "boolean"

packages/web/src/content/docs/formatters.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ Use an object to keep built-ins enabled while configuring overrides or custom fo
8080

8181
Each formatter configuration supports the following:
8282

83-
| Property | Type | Description |
84-
| ------------- | -------- | ------------------------------------------------------- |
85-
| `disabled` | boolean | Set this to `true` to disable the formatter |
83+
| Property | Type | Description |
84+
| ------------- | -------- | ------------------------------------------------------------------------------------------ |
85+
| `disabled` | boolean | Set this to `true` to disable the formatter |
8686
| `command` | string[] | The command to run for formatting. Required for custom formatters; optional for built-ins. |
87-
| `environment` | object | Environment variables to set when running the formatter |
88-
| `extensions` | string[] | File extensions this formatter should handle |
87+
| `environment` | object | Environment variables to set when running the formatter |
88+
| `extensions` | string[] | File extensions this formatter should handle |
8989

9090
Let's look at some examples.
9191

0 commit comments

Comments
 (0)