-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
44 lines (36 loc) · 1.26 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
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 2
# Tab indentation (no size specified)
[Makefile]
indent_style = tab
indent_size = 4
[*.bash]
shell_variant = bash
binary_next_line = true # binary ops like && and | may start a line.
switch_case_indent = true # switch cases will be indented.
space_redirects = true # redirect operators will be followed by a space.
keep_padding = true # keep column alignment paddings
function_next_line = false # function opening braces are placed on a separate line
never_split = true # like -ns
[*.bats]
shell_variant = bats
binary_next_line = true # binary ops like && and | may start a line.
switch_case_indent = true # switch cases will be indented.
space_redirects = true # redirect operators will be followed by a space.
keep_padding = true # keep column alignment paddings
function_next_line = false # function opening braces are placed on a separate line
never_split = true # like -ns
# Ignore the entire "third_party" directory.
[libs/**]
ignore = true
[test/bats/**]
ignore = true
[test/test_helper/bats-*/**]
ignore = true