.gitignore 596 B

1234567891011121314151617181920212223
  1. .DS_Store
  2. *.swp
  3. .project
  4. .idea/
  5. .vscode/
  6. npm-debug.log
  7. .jshintrc
  8. .vs/
  9. # The command'npm install --prefix test' adds files in the test folder (https://docs.npmjs.com/configuring-npm/folders.html#executables).
  10. # There are 2 kinds of files, those without extension and those with cmd extension.
  11. # To ignore files without a extension, following procedure is nessecary:
  12. # - ignore all files in the test folder
  13. # - unignore all files in subdirectories of the test folder
  14. # - unignore all files with an extension in the test folder
  15. test/*
  16. !test/*/
  17. !test/*.*
  18. test/*.cmd
  19. test/unit/build
  20. **/node_modules