option
/
.editorconfig
19 строк · 273.0 Байт
1; top-most EditorConfig file
2root = true
3
4; Unix-style newlines
5[*]
6charset = utf-8
7end_of_line = LF
8insert_final_newline = true
9trim_trailing_whitespace = true
10
11[*.php]
12indent_style = space
13indent_size = 4
14
15[*.md]
16max_line_length = 80
17
18[COMMIT_EDITMSG]
19max_line_length = 0