.editorconfig
569 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
# EditorConfig http://EditorConfig.org
# Root EditorConfig file
root = true
# Universal
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 4
# PHP - PSR-2 standards
[**.php]
indent_style = space
indent_size = 4
# HTML
[**.html]
indent_style = space
indent_size = 4
# SVG
[**.svg]
indent_style = space
indent_size = 4
# JavaScript
[**.js]
indent_style = space
indent_size = 4
# CSS
[**.css]
indent_style = space
indent_size = 4
# SASS
[**.scss]
indent_style = space
indent_size = 4