2021-03-04 17:40:57 +00:00
|
|
|
# @see https://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 = 100
|
|
|
|
|
2021-03-20 15:33:18 +00:00
|
|
|
# C-style doc comments
|
|
|
|
block_comment_start = /*
|
|
|
|
block_comment = *
|
|
|
|
block_comment_end = */
|
|
|
|
|
2021-03-04 17:40:57 +00:00
|
|
|
[{bw-dev,fr-dev,LICENSE}]
|
|
|
|
max_line_length = off
|
|
|
|
|
2021-04-17 18:49:27 +00:00
|
|
|
[*.{csv,json,html,md,po,py,svg,tsv}]
|
2021-03-04 17:40:57 +00:00
|
|
|
max_line_length = off
|
|
|
|
|
2021-04-17 10:39:57 +00:00
|
|
|
# ` ` at the end of a line is a line-break in markdown
|
2021-03-04 18:24:11 +00:00
|
|
|
[*.{md,markdown}]
|
|
|
|
trim_trailing_whitespace = false
|
|
|
|
|
|
|
|
[*.{yml,yaml}]
|
|
|
|
indent_size = 2
|
|
|
|
max_line_length = off
|
2021-03-31 14:25:44 +00:00
|
|
|
|
2021-04-17 10:39:57 +00:00
|
|
|
# Computer generated files
|
2021-04-17 18:49:27 +00:00
|
|
|
[{package.json,*.lock,*.mo}]
|
2021-03-31 14:25:44 +00:00
|
|
|
indent_size = unset
|
|
|
|
indent_style = unset
|
|
|
|
max_line_length = unset
|
2021-04-17 10:39:57 +00:00
|
|
|
insert_final_newline = unset
|