showdown/.editorconfig

16 lines
392 B
INI
Raw Normal View History

2015-01-19 19:38:05 +08:00
[*.js]
indent_style = space;
indent_size = 2;
2015-01-19 22:53:53 +08:00
continuation_indent_size = 2;
2015-01-19 19:38:05 +08:00
insert_final_newline = true;
quote_type = single;
space_after_anonymous_functions = true;
space_after_control_statements = true;
spaces_around_operators = true;
trim_trailing_whitespace = true;
spaces_in_brackets = false;
2015-01-19 22:53:53 +08:00
curly_bracket_next_line = true;
indent_brace_style = 1TBS;
2015-01-19 19:38:05 +08:00
end_of_line = lf;
2015-01-19 22:53:53 +08:00
charset = utf-8;