mirror of
https://github.com/DuendeSoftware/products
synced 2026-05-24 09:28:24 +00:00
Add end_of_line = lf to .editorconfig
The IDE0055 formatting errors were caused by dotnet format defaulting to CRLF line endings on Windows, while all source files use LF. Adding an explicit end_of_line = lf setting aligns the formatter with the actual file line endings and resolves all 26 build errors.
This commit is contained in:
parent
a74e24853f
commit
8183dd8eeb
1 changed files with 1 additions and 0 deletions
|
|
@ -2,6 +2,7 @@ root = true
|
|||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue