xref: /PHP-7.1/.editorconfig (revision aa143515)
1# http://editorconfig.org/
2
3root = true
4
5[*.{c,h,awk,w32,bat,mk,frag}]
6charset                  = utf-8
7end_of_line              = lf
8indent_size              = 4
9indent_style             = tab
10tab_width                = 4
11trim_trailing_whitespace = true
12insert_final_newline     = true
13
14[*.{php,phpt}]
15charset                  = utf-8
16end_of_line              = lf
17indent_size              = 4
18indent_style             = space
19trim_trailing_whitespace = true
20insert_final_newline     = true
21
22[*.{yml,m4,sh}]
23charset                  = utf-8
24end_of_line              = lf
25indent_size              = 2
26indent_style             = space
27trim_trailing_whitespace = true
28insert_final_newline     = true
29
30[*.md]
31charset                  = utf-8
32end_of_line              = lf
33indent_style             = space
34trim_trailing_whitespace = false
35insert_final_newline     = true
36