-
-
Notifications
You must be signed in to change notification settings - Fork 654
/
.editorconfig
96 lines (78 loc) · 2.44 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
# EditorConfig is awesome: https://EditorConfig.org
# -------------------------------------------------------------------------------------------------
# Default configuration
# -------------------------------------------------------------------------------------------------
# top-most EditorConfig file
root = true
# Default for all files
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
# -------------------------------------------------------------------------------------------------
# Devilbox Intranet
# -------------------------------------------------------------------------------------------------
# Intranet CSS
[.devilbox/www/htdocs/assets/css/*.css]
indent_style = tab
indent_size = 4
# Intranet config
[.devilbox/www/config.php]
indent_style = tab
indent_size = 4
# Intranet libs
[.devilbox/www/include/lib/**.php]
indent_style = tab
indent_size = 4
# Intranet pages
[.devilbox/www/htdocs/*.php]
indent_style = tab
indent_size = 4
# -------------------------------------------------------------------------------------------------
# Devilbox Git Repository
# -------------------------------------------------------------------------------------------------
[.travis.yml]
indent_style = space
indent_size = 2
[.tests/**.{php,sh}]
indent_style = tab
indent_size = 4
[Makefile]
indent_style = tab
indent_size = 4
# -------------------------------------------------------------------------------------------------
# Devilbox Configuration and Scripts
# -------------------------------------------------------------------------------------------------
[{docker-compose.yml,docker-compose-override.yml,docker-compose-override.yml-example}]
indent_style = space
indent_size = 2
[compose/docker-compose.override.yml-*]
indent_style = space
indent_size = 2
[cfg/vhost-gen/*.yml-*]
indent_style = space
indent_size = 2
[{nginx.yml,apache22.yml,apache24.yml}]
indent_style = space
indent_size = 2
[{shell.sh,update-docker.sh}]
indent_style = tab
indent_size = 4
[shell.bat]
end_of_line = crlf
indent_style = tab
indent_size = 4
# -------------------------------------------------------------------------------------------------
# Devilbox Documentation
# -------------------------------------------------------------------------------------------------
[*.md]
indent_style = space
trim_trailing_whitespace = false
indent_size = 2
[docs/**.py]
indent_style = space
indent_size = 4
[docs/**.rst]
indent_style = space
indent_size = 4