Regenerate Documentation
This commit is contained in:
parent
32fba8bf1a
commit
4b49a0b37d
106
docs/options.md
106
docs/options.md
|
@ -7946,6 +7946,8 @@ Maximum amount of characters per line (0 = disable) (Supported by Pretty Diff)
|
|||
| `default_beautifier` | :white_check_mark: |
|
||||
| `beautify_on_save` | :white_check_mark: |
|
||||
| `end_of_line` | :white_check_mark: |
|
||||
| `indent_char` | :white_check_mark: |
|
||||
| `indent_size` | :white_check_mark: |
|
||||
|
||||
**Description**:
|
||||
|
||||
|
@ -8034,6 +8036,58 @@ Override EOL from line-ending-selector (Supported by Lua beautifier)
|
|||
}
|
||||
```
|
||||
|
||||
##### [Indent char](#indent-char)
|
||||
|
||||
**Namespace**: `lua`
|
||||
|
||||
**Key**: `indent_char`
|
||||
|
||||
**Default**: ` `
|
||||
|
||||
**Type**: `string`
|
||||
|
||||
**Supported Beautifiers**: [`Lua beautifier`](#lua-beautifier)
|
||||
|
||||
**Description**:
|
||||
|
||||
Indentation character (Supported by Lua beautifier)
|
||||
|
||||
**Example `.jsbeautifyrc` Configuration**
|
||||
|
||||
```json
|
||||
{
|
||||
"lua": {
|
||||
"indent_char": " "
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
##### [Indent size](#indent-size)
|
||||
|
||||
**Namespace**: `lua`
|
||||
|
||||
**Key**: `indent_size`
|
||||
|
||||
**Default**: `4`
|
||||
|
||||
**Type**: `integer`
|
||||
|
||||
**Supported Beautifiers**: [`Lua beautifier`](#lua-beautifier)
|
||||
|
||||
**Description**:
|
||||
|
||||
Indentation size/length (Supported by Lua beautifier)
|
||||
|
||||
**Example `.jsbeautifyrc` Configuration**
|
||||
|
||||
```json
|
||||
{
|
||||
"lua": {
|
||||
"indent_size": 4
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### [Markdown](#markdown)
|
||||
|
||||
**Supported Beautifiers**: [`Remark`](#remark) [`Tidy Markdown`](#tidy-markdown)
|
||||
|
@ -17243,6 +17297,58 @@ Aligns columns by the alignment tabs for environments specified (Supported by La
|
|||
|
||||
### Lua beautifier
|
||||
|
||||
##### [Indent size](#indent-size)
|
||||
|
||||
**Namespace**: `lua`
|
||||
|
||||
**Key**: `indent_size`
|
||||
|
||||
**Default**: `4`
|
||||
|
||||
**Type**: `integer`
|
||||
|
||||
**Supported Beautifiers**: [`Lua beautifier`](#lua-beautifier)
|
||||
|
||||
**Description**:
|
||||
|
||||
Indentation size/length (Supported by Lua beautifier)
|
||||
|
||||
**Example `.jsbeautifyrc` Configuration**
|
||||
|
||||
```json
|
||||
{
|
||||
"lua": {
|
||||
"indent_size": 4
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
##### [Indent char](#indent-char)
|
||||
|
||||
**Namespace**: `lua`
|
||||
|
||||
**Key**: `indent_char`
|
||||
|
||||
**Default**: ` `
|
||||
|
||||
**Type**: `string`
|
||||
|
||||
**Supported Beautifiers**: [`Lua beautifier`](#lua-beautifier)
|
||||
|
||||
**Description**:
|
||||
|
||||
Indentation character (Supported by Lua beautifier)
|
||||
|
||||
**Example `.jsbeautifyrc` Configuration**
|
||||
|
||||
```json
|
||||
{
|
||||
"lua": {
|
||||
"indent_char": " "
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
##### [End of line](#end-of-line)
|
||||
|
||||
**Namespace**: `lua`
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -449,4 +449,4 @@
|
|||
"prettydiff2"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -9349,6 +9349,22 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"ocp-indent": {
|
||||
"key": "ocp-indent",
|
||||
"title": "ocp-indent",
|
||||
"type": "object",
|
||||
"collapsed": true,
|
||||
"description": "Options for ocp-indent executable.",
|
||||
"properties": {
|
||||
"path": {
|
||||
"key": "path",
|
||||
"title": "Binary/Script Path",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Absolute path to the \"ocp-indent\" executable's binary/script."
|
||||
}
|
||||
}
|
||||
},
|
||||
"php": {
|
||||
"key": "php",
|
||||
"title": "PHP",
|
||||
|
@ -9397,6 +9413,22 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"puppet-lint": {
|
||||
"key": "puppet-lint",
|
||||
"title": "puppet-lint",
|
||||
"type": "object",
|
||||
"collapsed": true,
|
||||
"description": "Options for puppet-lint executable.",
|
||||
"properties": {
|
||||
"path": {
|
||||
"key": "path",
|
||||
"title": "Binary/Script Path",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"description": "Absolute path to the \"puppet-lint\" executable's binary/script."
|
||||
}
|
||||
}
|
||||
},
|
||||
"sass-convert": {
|
||||
"key": "sass-convert",
|
||||
"title": "SassConvert",
|
||||
|
|
Loading…
Reference in New Issue