28 lines
470 B
INI
28 lines
470 B
INI
; This file is for unifying the coding style for different editors and IDEs.
|
|
; More information at http://editorconfig.org
|
|
|
|
|
|
root = true
|
|
|
|
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
|
|
|
|
[*.{php,inc,module}]
|
|
indent_style = tab
|
|
trim_trailing_whitespace = false
|
|
insert_final_newline = true
|
|
|
|
|
|
[*.js]
|
|
indent_style = tab
|
|
trim_trailing_whitespace = false
|
|
insert_final_newline = true
|
|
|
|
|
|
[*.{css,less,scss}]
|
|
indent_style = tab
|
|
trim_trailing_whitespace = false
|
|
insert_final_newline = true
|