set default values like in
https://github.com/JetBrains/intellij-community/blob/master/.editorconfig
This commit is contained in:
parent
50f7dc7c89
commit
7527bcb708
|
@ -3,12 +3,20 @@ root = true
|
||||||
[*]
|
[*]
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
end_of_line = lf
|
end_of_line = lf
|
||||||
indent_size = 4
|
indent_size = 2
|
||||||
indent_style = space
|
indent_style = space
|
||||||
insert_final_newline = false
|
insert_final_newline = false
|
||||||
max_line_length = 120
|
max_line_length = 140
|
||||||
tab_width = 4
|
tab_width = 2
|
||||||
# ij_continuation_indent_size = 8
|
ij_continuation_indent_size = 2
|
||||||
|
|
||||||
|
ij_any_else_on_new_line = true
|
||||||
|
ij_any_catch_on_new_line = true
|
||||||
|
ij_any_finally_on_new_line = true
|
||||||
|
ij_any_block_comment_at_first_column = false
|
||||||
|
ij_any_line_comment_at_first_column = false
|
||||||
|
ij_javascript_force_semicolon_style = true
|
||||||
|
ij_javascript_use_semicolon_after_statement = false
|
||||||
# ij_formatter_off_tag = @formatter:off
|
# ij_formatter_off_tag = @formatter:off
|
||||||
# ij_formatter_on_tag = @formatter:on
|
# ij_formatter_on_tag = @formatter:on
|
||||||
# ij_formatter_tags_enabled = true
|
# ij_formatter_tags_enabled = true
|
||||||
|
|
Loading…
Reference in New Issue