1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tools: gitignore the bin/ folder in new V projects (created by v init) (#16493)

This commit is contained in:
Subhomoy Haldar 2022-11-20 12:43:33 +00:00 committed by GitHub
parent 45854882b9
commit aae63f5eb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -71,6 +71,9 @@ ${name}
*.dylib
*.dll
# Ignore binary output folders
bin/
# Ignore common editor/system specific metadata
.DS_Store
.idea/

View File

@ -34,6 +34,9 @@ fn init_and_check() ! {
'*.dylib',
'*.dll',
'',
'# Ignore binary output folders',
'bin/',
'',
'# Ignore common editor/system specific metadata',
'.DS_Store',
'.idea/',