-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path.editorconfig
29 lines (25 loc) · 1003 Bytes
/
.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
# =============================================================================
# https://EditorConfig.org
# -----------------------------------------------------------------------------
# emacs -> https://github.com/editorconfig/editorconfig-emacs#readme
# intellij -> should just work
# vim -> https://github.com/editorconfig/editorconfig-vim#readme
# =============================================================================
root = true
# -----------------------------------------------------------------------------
# defaults
# -----------------------------------------------------------------------------
[*]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
# -----------------------------------------------------------------------------
# shell scripts
# -----------------------------------------------------------------------------
[*.sh]
indent_size = 2
[{*.yaml,*.yml}]
indent_size = 2
indent_style = space