mirror of
https://github.com/vlang/v.git
synced 2025-09-16 07:52:32 +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
2 changed files with 6 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue