mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 15:19:44 +02:00
* Modify `.gitattributes` to be more clear about file types, diffs and EOL chars. * Add attributes to `.editorconfig` so it matches `.gitattributes`. Signed-off-by: Emily Mabrey <emabrey@tenacityaudio.org> Reference-to: https://github.com/tenacityteam/tenacity/pull/359
26 lines
522 B
INI
26 lines
522 B
INI
# top-most EditorConfig file
|
|
root = true
|
|
|
|
# Unix-style newlines with a newline ending every file
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[*.{bat,cmd,ps1}]
|
|
end_of_line = crlf
|
|
|
|
[*.{csproj,dbproj,filters,fsproj,lsproj,modelproj,props,sln,sqlproj,vbproj,vcproj,vcxitems,vcxproj,wixproj,wmaproj,xproj}]
|
|
charset = utf-8-bom
|
|
end_of_line = crlf
|
|
|
|
# 4-wide spaces
|
|
[*.{c,h,cpp,hpp}]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
# use tabs for Makefile
|
|
[Makefile]
|
|
indent_style = tab
|