-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
93 lines (73 loc) · 2.2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
tab_width = 4
indent_size = 4
indent_style = space
ij_continuation_indent_size = 4
ij_visual_guides = 90
max_line_length = 120
ij_smart_tabs = false
ij_wrap_on_typing = false
ij_formatter_on_tag = @formatter:on
ij_formatter_off_tag = @formatter:off
ij_formatter_tags_enabled = true
[{*.lua,*.lua.txt,*.moon,.busted}]
# Tabs and Indents
ij_lua_tab_width = 2
ij_lua_indent_size = 2
ij_lua_continuation_indent_size = 4
ij_lua_keep_indents_on_empty_lines = false
# Spaces
## Around operators
ij_lua_spaces_around_assignment_operators = true
## Other
ij_lua_space_before_comma = false
ij_lua_space_after_comma = true
# Wrapping and Braces
## Visual guides
ij_visual_guides = unset
## Keep when reformatting
ij_lua_keep_simple_blocks_in_one_line = false
## Method declaration parameters
ij_lua_method_parameters_wrap = off
ij_lua_align_multiline_parameters = true
## Method call arguments
ij_lua_call_parameters_wrap = off
ij_lua_align_multiline_parameters_in_calls = false
ij_lua_align_consecutive_variable_declarations = false
## Group declarations
## Table
[*.{markdown,md}]
max_line_length = 100
# Wrapping and Braces
ij_markdown_wrap_text_if_long = true
ij_markdown_wrap_text_inside_blockquotes = false
ij_visual_guides = 80, 100
## When reformatting
ij_markdown_keep_line_breaks_inside_text_blocks = true
ij_markdown_insert_quote_arrows_on_wrap = true
ij_markdown_format_tables = false
# Tabs and Indents
ij_markdown_tab_width = 2
ij_markdown_indent_size = 2
ij_markdown_continuation_indent_size = 2
ij_markdown_keep_indents_on_empty_lines = true
# Blank Lines
## Keep maximum blank lines
ij_markdown_max_lines_around_header = 1
ij_markdown_max_lines_around_block_elements = 1
ij_markdown_max_lines_between_paragraphs = 1
## Minimum blank lines
ij_markdown_min_lines_around_header = 1
ij_markdown_min_lines_around_block_elements = 1
ij_markdown_min_lines_between_paragraphs = 1
# Spaces
## Force one space
ij_markdown_force_one_space_between_words = true
ij_markdown_force_one_space_after_header_symbol = true
ij_markdown_force_one_space_after_list_bullet = true
ij_markdown_force_one_space_after_blockquote_symbol = true