1# EditorConfig is awesome: http://editorconfig.org
2root = true
3
4# Unix-style newlines with a newline ending every file
5[*]
6end_of_line = lf
7insert_final_newline = true
8trim_trailing_whitespace = true
9indent_style = space
10indent_size = 2
11
12# php uses 4 space indentation for php files
13[*.php]
14indent_size = 4