Last active
August 1, 2018 11:10
-
-
Save khushalbokadey/04b9a04afb681dd14192e1ed7f4d428d to your computer and use it in GitHub Desktop.
js-beautify config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "indent_size": 4, | |
| "html": { | |
| "end_with_newline": true, | |
| "js": { | |
| "indent_size": 2 | |
| }, | |
| "css": { | |
| "indent_size": 2 | |
| } | |
| }, | |
| "css": { | |
| "indent_size": 1 | |
| }, | |
| "js": { | |
| "indent_size": 2, | |
| "brace_style": "collapse", | |
| "break_chained_methods": true, | |
| "end_with_newline": true, | |
| "eval_code": false, | |
| "indent_char": " ", | |
| "indent_level": 0, | |
| "indent_with_tabs": false, | |
| "jslint_happy": false, | |
| "keep_array_indentation": false, | |
| "keep_function_indentation": false, | |
| "max_preserve_newlines": 10, | |
| "preserve_newlines": true, | |
| "space_after_anon_function": true, | |
| "space_before_conditional": true, | |
| "space_in_empty_paren": false, | |
| "space_in_paren": false, | |
| "unescape_strings": false, | |
| "wrap_line_length": 0, | |
| "preserve-newlines": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment