Ensure markdown uses lf line endings

This commit is contained in:
Aminda Suomalainen 2024-07-08 09:15:20 +03:00
parent 31370667d9
commit 1490e1b8a5
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
3 changed files with 5 additions and 1 deletions

View File

@ -52,6 +52,7 @@ trim_trailing_whitespace = false
# Prettier seems to believe spaces are the only way to markdown
indent_style = space
indent_size = 2
end_of_line = lf
# Nim https://nim-lang.org/docs/nep1.html#introduction-spacing-and-whitespace-conventions
[*.nim]

View File

@ -2,3 +2,6 @@ root = false
[*]
end_of_line = crlf
[*.md]
end_of_line = lf

View File

@ -1,2 +1,2 @@
* text=auto eol=crlf
*.{md,markdown} text eol=lf
*.md text eol=lf