tools: include `vls.log` in the .gitignore files for new V projects (#12522)

pull/12546/head
Subhomoy Haldar 2021-11-19 22:53:35 +05:30 committed by GitHub
parent b576181a66
commit 2794aa623a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 0 deletions

3
.gitignore vendored
View File

@ -102,3 +102,6 @@ flake.nix
.envrc
thirdparty/stdatomic/nix/cpp/*.h
# ignore VLS log
vls.log

View File

@ -74,6 +74,7 @@ fn gen_gitignore(name string) string {
'*.so',
'*.dylib',
'*.dll',
'vls.log',
'',
].join('\n')
}

View File

@ -34,6 +34,7 @@ fn init_and_check() ? {
'*.so',
'*.dylib',
'*.dll',
'vls.log',
'',
].join('\n')
}