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:
parent
45854882b9
commit
aae63f5eb5
@ -71,6 +71,9 @@ ${name}
|
||||
*.dylib
|
||||
*.dll
|
||||
|
||||
# Ignore binary output folders
|
||||
bin/
|
||||
|
||||
# Ignore common editor/system specific metadata
|
||||
.DS_Store
|
||||
.idea/
|
||||
|
@ -34,6 +34,9 @@ fn init_and_check() ! {
|
||||
'*.dylib',
|
||||
'*.dll',
|
||||
'',
|
||||
'# Ignore binary output folders',
|
||||
'bin/',
|
||||
'',
|
||||
'# Ignore common editor/system specific metadata',
|
||||
'.DS_Store',
|
||||
'.idea/',
|
||||
|
Loading…
Reference in New Issue
Block a user