mirror of
https://github.com/martinvonz/jj.git
synced 2024-11-10 14:16:24 +03:00
0c1734a19d
The `trim_trailing_whitespace` config is not working well with multi-line string literals. I've tried to work around intellij-rust/intellij-rust#5368 twice and now I want to use the `insta` crate so I'd need to find another workaround. Let's just disable the config instead. I wouldn't be surprised if other editors have similar bugs as IntelliJ.
12 lines
251 B
INI
12 lines
251 B
INI
root = true
|
|
|
|
[*]
|
|
end_of_line = lf
|
|
# Turned off because some editors otherwise remove trailing spaces within
|
|
# multi-line string literals (intellij-rust/intellij-rust#5368).
|
|
trim_trailing_whitespace = false
|
|
|
|
[*.rs]
|
|
indent_style = space
|
|
indent_size = 4
|