mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-07-07 13:15:27 +00:00

The `max_line_length` property was set to 100 for all filetypes, which led to git commit messages being wrapped at 100 characters instead of the usual 75. This introduces an exception for the special file used by git to write commit messages. Signed-off-by: Prajwal S N <prajwalnadig21@gmail.com>
20 lines
294 B
INI
20 lines
294 B
INI
# https://EditorConfig.org
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 4
|
|
max_line_length = 100
|
|
|
|
[*.md]
|
|
indent_size = 2
|
|
|
|
[*.{yml,yaml}]
|
|
indent_size = 2
|
|
|
|
[COMMIT_EDITMSG]
|
|
max_line_length = unset
|