tools: modify .gitattributes to categorize *.vsh and v.mod files properly (#13674)

pull/13685/head
Subhomoy Haldar 2022-03-07 21:45:18 +05:30 committed by GitHub
parent e6270b05dc
commit 0fd4c699dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 0 deletions

2
.gitattributes vendored
View File

@ -1,5 +1,7 @@
*.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
*.bat text=auto eol=crlf
Dockerfile.* linguist-language=Dockerfile
*.toml text eol=lf

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()