Regenerate Documentation

This commit is contained in:
Jack Treble 2018-01-16 22:57:37 +00:00
parent 32fba8bf1a
commit 4b49a0b37d
4 changed files with 4256 additions and 1 deletions

View File

@ -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`

4117
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -449,4 +449,4 @@
"prettydiff2"
]
}
}
}

View File

@ -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",