-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
68 lines (58 loc) · 1.6 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
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
indent_size = 2
indent_style = space
# Matches multiple files with brace expansion notation
# Set default charset
[**/*.rb]
charset = utf-8
# Protect the ascii-art!
[{lib/gdk/logo.rb,gdk.example.yml}]
end_of_line = unset
trim_trailing_whitespace = unset
insert_final_newline = unset
indent_size = unset
indent_style = unset
# Tab indentation (no size specified)
[Makefile]
indent_style = tab
indent_size = unset
[GDK_ROOT]
end_of_line = unset
trim_trailing_whitespace = unset
insert_final_newline = unset
indent_size = unset
indent_style = unset
[**/.gitkeep]
end_of_line = unset
trim_trailing_whitespace = unset
insert_final_newline = unset
indent_size = unset
indent_style = unset
[**/*.md]
indent_size = unset
[Gemfile.lock]
indent_style = unset
indent_size = unset
tab_width = unset
end_of_line = unset
max_line_length = unset
trim_trailing_whitespace = unset
insert_final_newline = unset
# ----------------------------------------------------------------------
# This rule should always stay at the bottom for greatest precedence
# ----------------------------------------------------------------------
# Don't apply these rules to any nested projects, except gitlab, which defines its own root level config
[{go-gitlab-shell,gitaly,gitlab-docs,gitlab-workhorse,gitlab-pages}/**]
indent_style = unset
indent_size = unset
tab_width = unset
end_of_line = unset
max_line_length = unset
trim_trailing_whitespace = unset
insert_final_newline = unset