Merge pull request #1520 from re6exp/master
Add support for additional wrap attribute options of js-beautify (html): force-aligned and force-expand-multiline.
This commit is contained in:
commit
8103909379
|
@ -1,4 +1,5 @@
|
||||||
# dev
|
# dev
|
||||||
|
- Add support for additional wrap attribute options of js-beautify (html): force-aligned and force-expand-multiline.
|
||||||
- Update to `remark`'s new API and fix [#1196](https://github.com/Glavin001/atom-beautify/issues/1196)
|
- Update to `remark`'s new API and fix [#1196](https://github.com/Glavin001/atom-beautify/issues/1196)
|
||||||
- Add beautifier for the Lua language.
|
- Add beautifier for the Lua language.
|
||||||
- Add [ocp-indent](https://github.com/OCamlPro/ocp-indent) beautifier for the OCaml language.
|
- Add [ocp-indent](https://github.com/OCamlPro/ocp-indent) beautifier for the OCaml language.
|
||||||
|
|
|
@ -115,6 +115,10 @@
|
||||||
"name": "Victor Uriarte",
|
"name": "Victor Uriarte",
|
||||||
"url": "https://github.com/vmuriart"
|
"url": "https://github.com/vmuriart"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Anton Brok-Volchansky",
|
||||||
|
"url": "https://github.com/re6exp"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Taylon Silmer",
|
"name": "Taylon Silmer",
|
||||||
"url": "https://github.com/taylon"
|
"url": "https://github.com/taylon"
|
||||||
|
|
|
@ -56,8 +56,8 @@ module.exports = {
|
||||||
wrap_attributes:
|
wrap_attributes:
|
||||||
type: 'string'
|
type: 'string'
|
||||||
default: "auto"
|
default: "auto"
|
||||||
enum: ["auto", "force"]
|
enum: ["auto", "force", "force-aligned", "force-expand-multiline"]
|
||||||
description: "Wrap attributes to new lines [auto|force]"
|
description: "Wrap attributes to new lines [auto|force|force-aligned|force-expand-multiline]"
|
||||||
wrap_attributes_indent_size:
|
wrap_attributes_indent_size:
|
||||||
type: 'integer'
|
type: 'integer'
|
||||||
default: defaultIndentSize
|
default: defaultIndentSize
|
||||||
|
|
Loading…
Reference in New Issue