nimbus-eth1/.gitignore
Zahary Karadjov 4b83208a19 Switch to the new style of importing vendor packages
In preparation of our migration to the new Nimble-based setup
and [nim-workspace][1], we switch to a new model where the vendor
packages are no longer imported through a locally generated Nimble
dir, but rather through an auto-generated `nimbus-build-system.paths`
file that features regular `--path:` statements.

This file will be imported only within the nimbus-build-system
environment in order to avoid any unwanted interference in working
copies based on the new Nimble setup.

[1]: https://github.com/status-im/nim-workspace
2022-09-12 22:56:08 +03:00

40 lines
531 B
Plaintext

*~
# Executables shall be put in an ignored build/ directory
/build
# Nimble packages
/vendor/.nimble
# ntags/ctags output
/tags
# a symlink that can't be added to the repo because of Windows
/nimbus.nims
# Ignore dynamic, static libs and libtool archive files
*.so
*.dylib
*.a
*.la
*.exe
*.dll
# Ignore generated C and doc files
nimcache
/nimbus/docs
/debug*.json
/block*.json
/.update.timestamp
*.generated.nim
/dist
# Nimble user files
nimble.develop
nimble.paths
# nimbus-build-system files
nimbus-build-system.paths