2020-09-14 16:05:17 +02:00
|
|
|
# EditorConfig is awesome: https://EditorConfig.org
|
2017-10-29 03:14:14 +01:00
|
|
|
|
|
|
|
# top-most EditorConfig file
|
|
|
|
root = true
|
|
|
|
|
|
|
|
# Unix-style newlines with a newline ending every file
|
|
|
|
[*]
|
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
2022-06-03 18:01:07 +02:00
|
|
|
trim_trailing_whitespace = true
|
2017-10-29 03:14:14 +01:00
|
|
|
|
|
|
|
# Set default charset
|
2018-04-11 04:05:23 +02:00
|
|
|
[*.{js,ts,scss,html}]
|
2017-10-29 03:14:14 +01:00
|
|
|
charset = utf-8
|
|
|
|
indent_style = space
|
2021-12-21 15:15:19 +01:00
|
|
|
indent_size = 2
|
2022-06-02 17:59:43 +02:00
|
|
|
|
|
|
|
[*.{ts}]
|
|
|
|
quote_type = single
|