Several additional file and folder types are added to .gitignore: - VSCode directory for for user and workspace settings. - *.orig files created by Git on merge conflicts. - Some artifacts related to the test procedure.
40 lines
614 B
Text
40 lines
614 B
Text
# Any path
|
|
*.swp
|
|
*~
|
|
nimcache/
|
|
|
|
# Absolute paths
|
|
/src/babel
|
|
/src/nimble
|
|
/tests/tester
|
|
|
|
# executables from test and build
|
|
/nimble
|
|
/tests/nimscript/nimscript
|
|
/tests/issue27/issue27
|
|
src/nimblepkg/cli
|
|
src/nimblepkg/packageinfo
|
|
src/nimblepkg/packageparser
|
|
src/nimblepkg/reversedeps
|
|
src/nimblepkg/version
|
|
tests/nimble-test/
|
|
tests/packageStructure/validBinary/y
|
|
tests/testCommand/testsFail/tests/t2
|
|
|
|
# Windows executables
|
|
*.exe
|
|
*.dll
|
|
|
|
# VCC compiler and linker artifacts
|
|
*.ilk
|
|
*.pdb
|
|
|
|
# Editors and IDEs project files and folders
|
|
.vscode
|
|
|
|
# VCS artifacts
|
|
*.orig
|
|
|
|
# Test procedure artifacts
|
|
tests/nimble-test/
|
|
nimble_*.nims
|