-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
112 lines (86 loc) · 1.84 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# Use 4 spaces for the Python files
[*.py]
indent_size = 4
max_line_length = 80
[COMMIT_EDITMSG]
indent_size = 4
indent_style = space
max_line_length = 80
# Tab indentation (no size specified)
[Makefile]
indent_style = tab
[*.txt]
insert_final_newline = false
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
end_of_line = lf
charset = utf-8
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
# GIT
[COMMIT_EDITMSG]
indent_size = 4
indent_style = space
max_line_length = 100
[*.patch]
trim_trailing_whitespace = false
# JS
[*.js, **/*.js]
indent_size = 4
indent_style = space
[{package.json,.travis.yml}]
indent_size = 2
indent_style = space
[*.{json,feature}]
indent_size = 2
insert_final_newline = false
[{go.mod,go.sum,*.go,.gitmodules}]
indent_style = tab
indent_size = 8
# 4 space indentation
[*.py]
indent_style = space
indent_size = 4
# 4 space indentation
[*.toml]
indent_style = space
indent_size = 2
# Tab indentation (no size specified)
[Makefile]
indent_style = tab
[*.txt]
insert_final_newline = false
#########################
# File Extension Settings
#########################
# Visual Studio Solution Files
[*.sln]
indent_style = tab
# Visual Studio XML Project Files
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
indent_size = 2
# XML Configuration Files
[*.{xml,config,props,targets,nuspec,resx,ruleset,vsixmanifest,vsct}]
indent_size = 2
# JSON Files
[*.{json,json5}]
indent_size = 2
# YAML Files
[*.{yml,yaml}]
indent_size = 2
# Markdown Files
[*.md]
trim_trailing_whitespace = false