-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy path.editorconfig
More file actions
28 lines (23 loc) · 644 Bytes
/
.editorconfig
File metadata and controls
28 lines (23 loc) · 644 Bytes
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
# Editor config helps developers define and maintain consistent
# coding styles between different editors and IDEs
# EditorConfig is awesome: http://editorconfig.org
# 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
# 2 space indentation
# Matches multiple files with brace expansion notation
[*.{yaml,yml}]
indent_style = space
indent_size = 2
# https://google.github.io/styleguide/shell.xml#Indentation
[*.{sh}]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false