-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
95 lines (77 loc) · 1.94 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
94
95
# top-most EditorConfig file
root = true
[*]
end_of_line = lf
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = false
trim_trailing_whitespace = true
ij_continuation_indent_size = 8
ij_formatter_off_tag = @formatter:off
ij_formatter_on_tag = @formatter:on
ij_formatter_tags_enabled = true
ij_smart_tabs = false
ij_visual_guides =
ij_wrap_on_typing = false
[{go.mod,go.sum,*.go,.gitmodules}]
indent_style = tab
indent_size = 4
[*.py]
indent_style = space
indent_size = 4
max_line_length = 140
[*.{sh,html,bash,bats}]
indent_style = space
indent_size = 2
[Makefile]
indent_style = tab
[*.{tf,tfvars}]
indent_size = 2
indent_style = space
[*.{yml,yaml,toml}]
indent_style = space
indent_size = 2
[*.feature]
indent_size = 2
[*.md]
indent_size = 2
[*.{json,tpl}]
indent_style = space
indent_size = 2
[Jenkinsfile]
indent_size = 2
indent_style = space
[*.{xml,config,props,targets,nuspec,resx,ruleset,vsixmanifest,vsct}]
indent_size = 2
[{*.scala,*.sbt}]
indent_size = 2
max_line_length = 80
[{*.hcl,*.conf}]
indent_size = 2
max_line_length = 100
# JS
[*.js, **/*.js]
indent_size = 4
indent_style = space
[{package.json, .env-cmdrc}]
indent_size = 2
indent_style = space
root = true
[{*.markdown,*.md}]
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_format_tables = true
ij_markdown_insert_quote_arrows_on_wrap = true
ij_markdown_keep_indents_on_empty_lines = false
ij_markdown_keep_line_breaks_inside_text_blocks = true
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
ij_markdown_wrap_text_if_long = true
ij_markdown_wrap_text_inside_blockquotes = true