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

126 lines
1.3 KiB
Plaintext
Raw Normal View History

# ignore sub-level build binaries and v binary
*/**/*
v
v.exe
v2
v2.exe
vdbg
vdbg.exe
!*/
!*.*
*.exe
*.o
*.so
.*.c
*.tmp.c
*.obj
*.exp
*.ilk
*.pdb
2019-12-22 00:46:32 +03:00
*.dll
*.lib
*.bak
*.dylib
a.out
.noprefix.vrepl_temp
2019-09-15 04:32:41 +03:00
# ignore v build files
2020-05-22 11:46:55 +03:00
/vc
/v.c
/v.*.c
/v.c.out
/v_old
/v_old.exe
/vold
/vold.exe
/vnew
/vnew.exe
.vrepl_temp.v
fns.txt
.noprefix.vrepl_temp.v
2019-12-01 12:50:13 +03:00
# ignore temp directories
/temp
/tmp
# unignore special files without extension
!.github/PULL_REQUEST_TEMPLATE
!.editorconfig
!.gitattributes
!.gitignore
!BSDmakefile
!Dockerfile
!Dockerfile.alpine
!Dockerfile.cross
!LICENSE
!Makefile
!GNUmakefile
# ignore editor files
.idea
.project
.classpath
.c9
.vs
*.launch
.settings/
*.sublime-workspace
.vscode/
2020-05-12 20:29:44 +03:00
*.code-workspace
*~
2020-04-01 15:57:01 +03:00
*.swp
*.swo
*.swn
2020-11-19 23:16:03 +03:00
.env
2020-04-01 15:57:01 +03:00
# ignore debugger files
cachegrind.out.*
.gdb_history
*.dSYM
2020-06-15 00:15:12 +03:00
*.def
vgcore.*
# ignore system files
.DS_Store
._*
thumbs.db
2020-06-28 14:35:23 +03:00
/.symlink
/.bin
2020-06-28 14:35:23 +03:00
_docs
# ignore vs databases
*.suo
*.VC.db
2021-01-01 19:24:08 +03:00
*.rsp
# ignore cmd/tools/.disable_autorecompilation, which some package managers use.
cmd/tools/.disable_autorecompilation
test.bin
2021-04-25 18:57:55 +03:00
# ignore codespace env
.venv/
.direnv/
shell.nix
default.nix
flake.nix
.envrc
2021-09-28 10:28:04 +03:00
thirdparty/stdatomic/nix/cpp/*.h
thirdparty/binaryen*
thirdparty/wabt*
# ignore VLS log
vls.log
# ignore v2go tmperror files
*.tmperr
*/**/tmp.*
# ignore Intellij files
.idea/
/*.iml
wasm.v