debian-mirror-gitlab/.editorconfig

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
673 B
INI
Raw Normal View History

2020-04-08 14:13:33 +05:30
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
[*.{js,json,vue,scss,rb,haml,yml}]
indent_size = 2
[*.{js,json,vue,scss,rb,haml,yml,md}]
indent_style = space
charset = utf-8
2020-06-23 00:09:42 +05:30
2020-11-24 15:15:51 +05:30
[*.{md,markdown,js.snap}]
2020-06-23 00:09:42 +05:30
trim_trailing_whitespace = false
2022-06-21 17:19:12 +05:30
2023-06-20 00:43:36 +05:30
[doc/**/*.md]
trim_trailing_whitespace = true
2022-06-21 17:19:12 +05:30
[*.rb]
max_line_length = 120
2023-06-20 00:43:36 +05:30
# Don't apply editorconfig rules to vendor/ resources
[vendor/**]
charset = unset
end_of_line = unset
indent_size = unset
indent_style = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
max_line_length = unset