在Sublime中配置JsFormat
阿新 • • 發佈:2018-02-27
空格 字符 form IT new 函數 啟動 gpo eth
JsFormat配置文件: { // exposed jsbeautifier options "indent_with_tabs": false, // 保留換行符 "preserve_newlines": true, // 最大連續保留2二個換行符,也就是有一個空行 "max_preserve_newlines": 2, // 在條件語句前有空格 "space_before_conditional":false, //括弧添加空格 "space_in_paren": false, // 在函數的括弧後面添加空格 //"space-after-anon-function":true, "jslint_happy": false, // [collapse-preserve-inline|collapse|expand|end-expand|none] ["collapse"] // 代碼的樣式 "brace_style": "collapse", "keep_array_indentation": false, "keep_function_indentation": false, "eval_code": false, "unescape_strings": false, "break_chained_methods": false, "wrap_attributes_indent_size":0, "wrap-line-length":0, "end-with-newline":false, // 支持JSX "e4x": true, //最初的縮進級別 "indent_level": 0, // 縮進二個字符 "indent_size": 2, // 縮進2個字符,字符是一個空格 "indent_char":" ", //"eol":"\n", // 保存時自動格式化 "format_on_save": true, //格式化選中的文本 "format_selection": true, // 是否啟動.jsbeautifyrc文件 "jsbeautifyrc_files": false, "ignore_sublime_settings": true, "format_on_save_extensions": ["js", "json"] }
轉載地址: http://blog.csdn.net/itpinpai/article/details/53284061
在Sublime中配置JsFormat