blob: 4ab7203cb7a3e0d274441b897d59fafab813930d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# EditorConfig is awesome: http://EditorConfig.org
# Top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
max_line_length = 120
spaces_around_operators = true
spaces_around_brackets = outside
trim_trailing_whitespace = true
[*.php]
block_comment_start = /*
block_comment_end = */
line_comment = //
quote_type = single
|