2017-01-28 06:15:57 +00:00
|
|
|
# editorconfig tool configuration
|
|
|
|
# see http://editorconfig.org for docs
|
|
|
|
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
charset = utf-8
|
|
|
|
end_of_line = lf
|
|
|
|
indent_style = tab
|
2023-02-27 18:51:04 +00:00
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
2023-02-27 19:11:07 +00:00
|
|
|
quote_type = single
|
2023-02-27 19:34:46 +00:00
|
|
|
max_line_length = off
|
2023-02-27 19:11:07 +00:00
|
|
|
|
|
|
|
[*.js]
|
|
|
|
quote_type = double
|
|
|
|
ij_javascript_use_double_quotes = true
|
2021-01-21 23:16:22 +00:00
|
|
|
|
2023-02-27 18:51:04 +00:00
|
|
|
[*.yml]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
|
|
|
|
2023-02-27 19:34:46 +00:00
|
|
|
[*.xml]
|
|
|
|
indent_style = space
|
2023-02-27 19:57:19 +00:00
|
|
|
indent_size = 2
|
2023-02-27 19:34:46 +00:00
|
|
|
|
|
|
|
[*.json]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
|
|
|
|
2023-02-27 18:51:04 +00:00
|
|
|
[composer.json]
|
2023-02-27 19:34:46 +00:00
|
|
|
indent_style = tab
|