feature(beautify) add config, that could be read from ~/.beautify.json

This commit is contained in:
coderaiser 2014-10-24 04:16:18 -04:00
parent 5039e085d8
commit 2d9b3a542f
3 changed files with 33 additions and 2 deletions

18
json/beautify.json Normal file
View file

@ -0,0 +1,18 @@
{
"indent_size": 4,
"indent_char": " ",
"indent_level": 0,
"indent_with_tabs": false,
"preserve_newlines": true,
"max_preserve_newlines": 10,
"jslint_happy": false,
"space_after_anon_function": false,
"brace_style": "collapse",
"keep_array_indentation": false,
"keep_function_indentation": false,
"space_before_conditional": true,
"break_chained_methods": false,
"eval_code": false,
"unescape_strings": false,
"wrap_line_length": 0
}