-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
57 lines (50 loc) · 1.6 KB
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = off
tab_width = 2
trim_trailing_whitespace = true
[*.xml]
indent_size = 4
ij_xml_space_inside_empty_tag = true
[{*.ts,*.tsx}]
ij_html_do_not_indent_children_of_tags = none
ij_html_space_inside_empty_tag = true
ij_typescript_force_quote_style = true
ij_typescript_keep_simple_methods_in_one_line = true
ij_typescript_method_call_chain_wrap = normal
ij_typescript_object_literal_wrap = off
ij_typescript_spaces_within_imports = true
ij_typescript_spaces_within_object_literal_braces = true
ij_typescript_use_double_quotes = false
ij_typescript_var_declaration_wrap = split_into_lines
[{*.js,*.jsx}]
ij_html_do_not_indent_children_of_tags = none
ij_html_space_inside_empty_tag = true
ij_javascript_force_quote_style = true
ij_javascript_keep_simple_methods_in_one_line = true
ij_javascript_method_call_chain_wrap = normal
ij_javascript_object_literal_wrap = off
ij_javascript_spaces_within_imports = true
ij_javascript_spaces_within_object_literal_braces = true
ij_javascript_use_double_quotes = false
ij_javascript_var_declaration_wrap = split_into_lines
[{*.ejs,*.html}]
indent_size = 4
ij_html_attribute_wrap = off
ij_html_do_not_indent_children_of_tags = none
ij_html_space_inside_empty_tag = true
ij_html_text_wrap = off
[*.php]
indent_size = 4
indent_style = tab
ij_php_indent_code_in_php_tags = true
ij_php_method_brace_style = end_of_line
ij_php_new_line_after_php_opening_tag = true
[{*.markdown,*.md}]
ij_markdown_max_lines_around_block_elements = 0
ij_markdown_max_lines_around_header = 0