-
Notifications
You must be signed in to change notification settings - Fork 155
/
.editorconfig
41 lines (33 loc) · 955 Bytes
/
.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
# Editor configuration, see https://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 140
[*.scala]
indent_size = 2
ij_scala_indent_first_parameter = false
ij_scala_indent_first_parameter_clause = true
ij_scala_method_parameters_new_line_after_left_paren = true
ij_scala_method_parameters_right_paren_on_new_line = true
[{*.ts,*.js}]
indent_size = 4
# quotes
quote_type = single
ij_typescript_force_quote_style = true
ij_typescript_use_double_quotes = false
# semicolons
ij_typescript_force_semicolon_style = true
ij_typescript_use_semicolon_after_statement = false
# braces
indent_brace_style = stroustrup
ij_typescript_else_on_new_line = true
ij_typescript_catch_on_new_line = true
ij_typescript_finally_on_new_line = true
# imports
ij_typescript_blank_lines_after_imports = 2
ij_typescript_import_sort_members = true
[*.md]
max_line_length = off