-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.editorconfig
53 lines (46 loc) · 1.42 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
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
# insert_final_newline = false
max_line_length = 99
tab_width = 4
ij_continuation_indent_size = 8
# ij_formatter_off_tag = @formatter:off
# ij_formatter_on_tag = @formatter:on
# ij_formatter_tags_enabled = false
# ij_smart_tabs = false
# For docstrings and comments.
ij_visual_guides = 72
# ij_wrap_on_typing = false
[*.json]
indent_size = 2
# ij_json_keep_blank_lines_in_code = 0
# ij_json_keep_indents_on_empty_lines = false
# ij_json_keep_line_breaks = true
# ij_json_space_after_colon = true
# ij_json_space_after_comma = true
# ij_json_space_before_colon = true
# ij_json_space_before_comma = false
# ij_json_spaces_within_braces = false
# ij_json_spaces_within_brackets = false
# ij_json_wrap_long_lines = false
[*.yml]
indent_size = 2
[*.md]
max_line_length = 72
# ij_markdown_force_one_space_after_blockquote_symbol = true
# ij_markdown_force_one_space_after_header_symbol = true
# ij_markdown_force_one_space_after_list_bullet = true
# ij_markdown_force_one_space_between_words = true
# ij_markdown_keep_indents_on_empty_lines = false
# ij_markdown_max_lines_around_block_elements = 1
# ij_markdown_max_lines_around_header = 1
# ij_markdown_max_lines_between_paragraphs = 1
# ij_markdown_min_lines_around_block_elements = 1
# ij_markdown_min_lines_around_header = 1
# ij_markdown_min_lines_between_paragraphs = 1
[*.js]
ij_continuation_indent_size = 4