1234567891011121314151617181920212223 |
- .DS_Store
- *.swp
- .project
- .idea/
- .vscode/
- npm-debug.log
- .jshintrc
- .vs/
- # npm install --prefix test adds files in the test folder.
- # There are 2 kindsof files, those without extension and those with cmd extension.
- # To ignore files without a extension, following precedure is nessecary:
- # - ignore all files in the test folder
- # - unignore all files in subdirectories of the test folder
- # - unignore all files with an extension in the test folder
- test/*
- !test/*/
- !test/*.*
- test/*.cmd
- test/unit/build
- **/node_modules
|