mark *.vsh and all v.mod files as V in future .gitattributes

pull/13674/head
Subhomoy Haldar 2022-03-07 20:59:51 +05:30
parent 5c744ebcb7
commit c3978a5e6f
2 changed files with 4 additions and 0 deletions

View File

@ -77,6 +77,8 @@ vls.log
fn gitattributes_content() string {
return '*.v linguist-language=V text=auto eol=lf
*.vv linguist-language=V text=auto eol=lf
*.vsh linguist-language=V text=auto eol=lf
**/v.mod linguist-language=V text=auto eol=lf
'
}

View File

@ -40,6 +40,8 @@ fn init_and_check() ? {
assert os.read_file('.gitattributes') ? == [
'*.v linguist-language=V text=auto eol=lf',
'*.vv linguist-language=V text=auto eol=lf',
'*.vsh linguist-language=V text=auto eol=lf',
'**/v.mod linguist-language=V text=auto eol=lf'
'',
].join_lines()