diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-06-26 21:24:21 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-06-26 21:24:21 +1200 |
commit | b3b4a63b055c9d66db6663b932ae4e67a7f75e84 (patch) | |
tree | 2670cdf5b53bc48513797b71a14c8b84392427d1 | |
parent | 49707dd97f525bdce968678fa77be4b35951d008 (diff) | |
download | mitmproxy-b3b4a63b055c9d66db6663b932ae4e67a7f75e84.tar.gz mitmproxy-b3b4a63b055c9d66db6663b932ae4e67a7f75e84.tar.bz2 mitmproxy-b3b4a63b055c9d66db6663b932ae4e67a7f75e84.zip |
Add a .jsbeautifyrc to prevent war
-rw-r--r-- | .jsbeautifyrc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.jsbeautifyrc b/.jsbeautifyrc new file mode 100644 index 00000000..ec740152 --- /dev/null +++ b/.jsbeautifyrc @@ -0,0 +1,22 @@ +{ + "indent_size": 4, + "indent_char": " ", + "eol": "\n", + "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": 80, + "wrap_attributes": "auto", + "wrap_attributes_indent_size": 4, + "end_with_newline": false +} |