From 91fe5f63b47bcbeb4159b9c3548f9e1718efbc67 Mon Sep 17 00:00:00 2001 From: "DUDULUU-R7\\duduluu" Date: Wed, 25 Oct 2017 22:50:16 +0800 Subject: [PATCH] Add VSCode settings --- .vscode/settings.json | 55 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..015bf946 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,55 @@ +{ + "editor.formatOnSave": true, + "beautify.language": { + "js": { + "type": [ + "javascript", + "json" + ], + "filename": [ + ".jshintrc", + ".jsbeautify" + ], + "ext": [ + "js", + "json" + ] + }, + "css": [ + "css", + "scss", + "less" + ], + "html": [ + "htm", + "html", + "mustache", + "xml" + ] + }, + "beautify.config": { + "eol": "\n", + "end_with_newline": false, + "indent_char": " ", + "indent_size": 2, + "indent_with_tabs": false, + "preserve_newlines": true, + "brace_style": "collapse", + "max_preserve_newlines": 2, + "extra_liners": [ + "head", + "body", + "/html" + ], + "indent_body_inner_html": true, + "indent_inner_html": false, + "indent_scripts": "separate", + "wrap_attributes": "force-aligned", + "newline_between_rules": false, + "selector_separator_newline": false, + "space_around_combinator": true, + "space_around_selector_separator": true, + "keep_array_indentation": true, + "space_before_conditional": true + }, +} \ No newline at end of file