Skip to content

Commit

Permalink
Fix force-aligned in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Hooky committed Jan 5, 2017
1 parent 0334ac8 commit ab40f8d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
@@ -1,4 +1,7 @@
### 0.7.1: 05 Jan 2017 ### 0.7.3: 06 Jan 2017
* Change `force-align` to `force-aligned` in schema

### 0.7.2: 05 Jan 2017
* Fix packaging failure * Fix packaging failure


### 0.7.1: 04 Jan 2017 ### 0.7.1: 04 Jan 2017
Expand Down
2 changes: 1 addition & 1 deletion Settings.md
Expand Up @@ -17,7 +17,7 @@ indent_handlebars | HTML | [Boolean] **format and indent `{{
indent_head_inner_html | HTML | [Boolean] **Indent elements within html &lt;head> element.** <br> true indent_head_inner_html | HTML | [Boolean] **Indent elements within html &lt;head> element.** <br> true
indent_inner_html | HTML | [Boolean] **Indent `<head>` and `<body>` sections.** <br> false indent_inner_html | HTML | [Boolean] **Indent `<head>` and `<body>` sections.** <br> false
indent_scripts | HTML | [Boolean] **"keep", "separate", or "normal"** <br> "normal" indent_scripts | HTML | [Boolean] **"keep", "separate", or "normal"** <br> "normal"
wrap_attributes | HTML | [String] **Wrap attributes to new lines. "auto", "force", "force-align" or "force-expand-multiline"** <br> "auto" wrap_attributes | HTML | [String] **Wrap attributes to new lines. "auto", "force", "force-aligned" or "force-expand-multiline"** <br> "auto"
wrap_attributes_indent_size | HTML | [Boolean] **Indent wrapped attributes to after N characters. Defaults to 'indent_size'.** <br> false wrap_attributes_indent_size | HTML | [Boolean] **Indent wrapped attributes to after N characters. Defaults to 'indent_size'.** <br> false
unformatted | HTML | [Array&lt;String>] **List of tags that should not be reformatted.** <br> ["a", "abbr", "area", "audio", "b", "bdi", "bdo", "br", "button", "canvas", "cite", "code", "data", "datalist", "del", "dfn", "em", "embed", "i", "iframe", "img", "input", "ins", "kbd", "keygen", "label", "map", "mark", "math", "meter", "noscript", "object", "output", "progress", "q", "ruby", "s", "samp", "select", "small", "span", "strong", "sub", "sup", "svg", "template", "textarea", "time", "u", "var", "video", "wbr", "text", "acronym", "address", "big", "dt", "ins", "strike", "tt"] unformatted | HTML | [Array&lt;String>] **List of tags that should not be reformatted.** <br> ["a", "abbr", "area", "audio", "b", "bdi", "bdo", "br", "button", "canvas", "cite", "code", "data", "datalist", "del", "dfn", "em", "embed", "i", "iframe", "img", "input", "ins", "kbd", "keygen", "label", "map", "mark", "math", "meter", "noscript", "object", "output", "progress", "q", "ruby", "s", "samp", "select", "small", "span", "strong", "sub", "sup", "svg", "template", "textarea", "time", "u", "var", "video", "wbr", "text", "acronym", "address", "big", "dt", "ins", "strike", "tt"]
content_unformatted | HTML | [Array&lt;String>] List of tags who's content should not be reformatted<br>["pre"] content_unformatted | HTML | [Array&lt;String>] List of tags who's content should not be reformatted<br>["pre"]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "beautify", "name": "beautify",
"displayName": "beautify", "displayName": "beautify",
"description": "Beautify code in place for VS Code", "description": "Beautify code in place for VS Code",
"version": "0.7.2", "version": "0.7.3",
"publisher": "HookyQR", "publisher": "HookyQR",
"engines": { "vscode": "^1.6.0" }, "engines": { "vscode": "^1.6.0" },
"categories": ["Other", "Languages", "Formatters"], "categories": ["Other", "Languages", "Formatters"],
Expand Down
2 changes: 1 addition & 1 deletion schema/beautifyrc.json
Expand Up @@ -93,7 +93,7 @@
"description": "Wrap attributes to new lines. [HTML]", "description": "Wrap attributes to new lines. [HTML]",
"type": "string", "type": "string",
"default": "auto", "default": "auto",
"enum": ["auto", "force", "force-align", "force-expand-multiline"] "enum": ["auto", "force", "force-aligned", "force-expand-multiline"]
}, },
"wrap_attributes_indent_size": { "wrap_attributes_indent_size": {
"description": "Indent wrapped attributes to after N characters. Defaults to 'indent_size'. [HTML]", "description": "Indent wrapped attributes to after N characters. Defaults to 'indent_size'. [HTML]",
Expand Down

0 comments on commit ab40f8d

Please sign in to comment.