-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheditorconfig
More file actions
56 lines (48 loc) · 757 Bytes
/
editorconfig
File metadata and controls
56 lines (48 loc) · 757 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# top-most EditorConfig file
root = true
#
# Defaults for all file types
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = false
indent_style = space
indent_size = 4
# BBEdit defaults
x-show-invisibles = 0
x-show-spaces = 0
x-soft-wrap-text = 1
x-soft-wrap-mode = WindowWidth
x-typographers-quotes = 0
x-balance-while-typing = 1
#
# Property lists, Munki and AutoPkg
#
[*.{plist,recipe,pkginfo}]
mode = XML
indent_style = tab
indent_size = 4
x-show-invisibles = 1
x-show-spaces = 1
#
# Python
#
[*.py]
mode = Python
indent_style = space
indent_size = 4
#
# Puppet .pp files
#
[*.pp]
mode = Ruby
indent_style = space
indent_size = 2
#
# YAML
#
[*.{yaml,yml}]
mode = YAML
indent_style = space
indent_size = 2