Update options and docs
This commit is contained in:
parent
93aae32f8c
commit
d2b92d2b8a
|
@ -11692,6 +11692,7 @@ Maximum characters per line (0 disables) (Supported by Pretty Diff)
|
|||
| `identifiers` | :white_check_mark: |
|
||||
| `indent_size` | :white_check_mark: |
|
||||
| `keywords` | :white_check_mark: |
|
||||
| `reindent` | :white_check_mark: |
|
||||
|
||||
**Description**:
|
||||
|
||||
|
@ -11834,6 +11835,32 @@ Change case of keywords (Supported by sqlformat)
|
|||
}
|
||||
```
|
||||
|
||||
##### [Reindent](#reindent)
|
||||
|
||||
**Namespace**: `sql`
|
||||
|
||||
**Key**: `reindent`
|
||||
|
||||
**Default**: `true`
|
||||
|
||||
**Type**: `boolean`
|
||||
|
||||
**Supported Beautifiers**: [`sqlformat`](#sqlformat)
|
||||
|
||||
**Description**:
|
||||
|
||||
Change indentations of the statements. Uncheck this option to preserve indentation (Supported by sqlformat)
|
||||
|
||||
**Example `.jsbeautifyrc` Configuration**
|
||||
|
||||
```json
|
||||
{
|
||||
"sql": {
|
||||
"reindent": true
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### [SVG](#svg)
|
||||
|
||||
**Supported Beautifiers**: [`Pretty Diff`](#pretty-diff)
|
||||
|
@ -20583,6 +20610,32 @@ Indentation size/length (Supported by sqlformat)
|
|||
}
|
||||
```
|
||||
|
||||
##### [Reindent](#reindent)
|
||||
|
||||
**Namespace**: `sql`
|
||||
|
||||
**Key**: `reindent`
|
||||
|
||||
**Default**: `true`
|
||||
|
||||
**Type**: `boolean`
|
||||
|
||||
**Supported Beautifiers**: [`sqlformat`](#sqlformat)
|
||||
|
||||
**Description**:
|
||||
|
||||
Change indentations of the statements. Uncheck this option to preserve indentation (Supported by sqlformat)
|
||||
|
||||
**Example `.jsbeautifyrc` Configuration**
|
||||
|
||||
```json
|
||||
{
|
||||
"sql": {
|
||||
"reindent": true
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
##### [Keywords](#keywords)
|
||||
|
||||
**Namespace**: `sql`
|
||||
|
|
|
@ -6914,6 +6914,20 @@
|
|||
"namespace": "sql"
|
||||
}
|
||||
},
|
||||
"reindent": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"description": "Change indentations of the statements. Uncheck this option to preserve indentation (Supported by sqlformat)",
|
||||
"title": "Reindent",
|
||||
"beautifiers": [
|
||||
"sqlformat"
|
||||
],
|
||||
"key": "reindent",
|
||||
"language": {
|
||||
"name": "SQL",
|
||||
"namespace": "sql"
|
||||
}
|
||||
},
|
||||
"keywords": {
|
||||
"type": "string",
|
||||
"default": "upper",
|
||||
|
@ -9434,4 +9448,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue