Skip to content

Instantly share code, notes, and snippets.

@lsimone
Last active August 29, 2015 14:07
Show Gist options
  • Save lsimone/b971529ec08a92f09f4a to your computer and use it in GitHub Desktop.
Save lsimone/b971529ec08a92f09f4a to your computer and use it in GitHub Desktop.
formatting specific options for Aria Templates projects
{
// EsFormatter specific options
// default are specified here https://github.com/millermedeiros/esformatter/blob/master/lib/preset/default.json
"format_options" : {
// You can change the preset for any other available on ESFormatter
// Ref: https://github.com/millermedeiros/esformatter/tree/master/lib/preset
// e.g.: "preset": "jquery"
"preset": "default",
"indent": {
"value": " "
},
"lineBreak": {
"before": {
"EndOfFile": 2
}
},
"whiteSpace": {
"after": {
"FunctionReservedWord": 1,
"PropertyName": 1
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment