mirror of
https://github.com/vacp2p/nim-libp2p.git
synced 2026-01-07 01:34:03 -05:00
27 lines
721 B
Plaintext
27 lines
721 B
Plaintext
nimcache/
|
|
nimbledeps/
|
|
|
|
# Executables shall be put in an ignored build/ directory
|
|
# Ignore dynamic, static libs and libtool archive files
|
|
build/
|
|
*.so
|
|
*.dylib
|
|
*.a
|
|
*.la
|
|
*.exe
|
|
*.dll
|
|
.vscode/
|
|
.DS_Store
|
|
tests/pubsub/testgossipsub
|
|
examples/*.md
|
|
nimble.develop
|
|
nimble.paths
|
|
go-libp2p-daemon/
|
|
|
|
# Ignore all test build files in tests folder (auto generated when running tests).
|
|
# First rule (`tests/**/test*[^.]*`) will ignore all binaries: has prefix test + does not have dot in name.
|
|
# Second and third rules are here to un-ignores all files with extension and Docker file,
|
|
# because it appears that vs code is skipping text search is some tests files without these rules.
|
|
tests/**/test*[^.]*
|
|
!tests/**/*.*
|
|
!tests/**/Dockerfile |