Fix .editorconfig to not mess with line endings
This commit is contained in:
parent
a6be48681a
commit
e7bb975482
1 changed files with 19 additions and 1 deletions
|
@ -8,7 +8,6 @@ indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
|
||||||
# We recommend you to keep these unchanged
|
# We recommend you to keep these unchanged
|
||||||
end_of_line = lf
|
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
|
@ -16,3 +15,22 @@ insert_final_newline = true
|
||||||
[*.md]
|
[*.md]
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
|
|
||||||
|
# Make these match what we have in .gitattributes
|
||||||
|
[*.mk]
|
||||||
|
end_of_line = lf
|
||||||
|
|
||||||
|
[Makefile]
|
||||||
|
end_of_line = lf
|
||||||
|
|
||||||
|
[*.sh]
|
||||||
|
end_of_line = lf
|
||||||
|
|
||||||
|
# The gitattributes file will handle the line endings conversion properly according to the operating system settings for other files
|
||||||
|
|
||||||
|
|
||||||
|
# We don't have gitattributes properly for these
|
||||||
|
# So if the user have for example core.autocrlf set to true
|
||||||
|
# the line endings would be wrong.
|
||||||
|
[lib/**]
|
||||||
|
end_of_line = unset
|
||||||
|
|
Loading…
Reference in a new issue