2016-09-11 3 views
0

beautifyrc-fileの設定を調整して、各CSSブロックの後ろに(中かっこの後に)新しい空白を追加する方法を教えてもらえますか?Beautifyrc SCSS中括弧を閉じた後に新しい白線を追加する

SCSS-問題:

.return-btn { 
background-color: #ACE514 !important; 
border: 0; 
border-bottom: 3px solid #1F8619 !important; 
border-radius: 0; 
font-size: 18px; 
margin: 50px 0 50px 0; 
} 
.return-btn:hover { 
background-color: #ACE514 !important; 
border-bottom: 3px solid #1F8619 !important; 
} 

私は私の.scssを美化するとき、私は ".return-BTN" の閉じ括弧の後に新しい空白をしたいです。 default.jsbeautifyrcで

私の現在の設定:

{ 
"js": { 
    "eol": "\n", 
    "preserve_newlines": true, 
    "max_preserve_newlines": 10, 
    "space_after_anon_function": true, 
    "brace_style": "collapse", 
    "keep_array_indentation": true, 
    "keep_function_indentation": false, 
    "space_before_conditional": true, 
    "break_chained_methods": false, 
    "eval_code": false, 
    "unescape_strings": false, 
    "wrap_line_length": 0, 
    "wrap_attributes": "auto", 
    "end_with_newline": true, 
    "comma_first": false 
}, 
"css": { 
    "allowed_file_extensions": ["css", "scss", "sass", "less"], 
    "eol": "\\n", 
    "end_with_newline": true, 
    "selector_separator_newline": true, 
    "newline_between_rules": true, 
    "smartIndent": false, 
    "indent_char": " ", 
    "indent_size": 2, 
    "selector_separator": " " 
}, 
"html": { 
    "eol": "\n", 
    "end_with_newline": true, 
    "preserve_newlines": true, 
    "max_preserve_newlines": 10, 
    "indent_inner_html": false, 
    "brace_style": "collapse", 
    "indent_scripts": "normal", 
    "wrap_line_length": 0, 
    "wrap_attributes": "auto" 
} 
} 

iが出力されるCSSファイル自体をフォーマットし、改行はなくSCSSファイル内の各閉じ中括弧の後に添加されます。

答えて

関連する問題