-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
36 lines (28 loc) · 907 Bytes
/
.editorconfig
File metadata and controls
36 lines (28 loc) · 907 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
29
30
31
32
33
34
35
36
# EditorConfig is awesome: http://EditorConfig.org
# EditorConfig helps developers define and maintain consistent coding styles
# between different editors and IDEs. The EditorConfig project consists of a
# file format for defining coding styles and a collection of text editor plugins
# that enable editors to read the file format and adhere to defined styles.
# EditorConfig files are easily readable and they work nicely with version
# control systems.
# top-most EditorConfig file
root = true
# Configuration for all file types.
[*]
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.{md,markdown}]
trim_trailing_whitespace = false
[*.{diff,patch}]
insert_final_newline = false
trim_trailing_whitespace = false
[Makefile]
indent_size = 4
indent_style = tab
[*.svg]
insert_final_newline = false
indent_size = 2
indent_style = tab