.gitignore 803 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Specifies intentionally untracked files to ignore when using Git
  2. # http://git-scm.com/docs/gitignore
  3. /test/
  4. *~
  5. *.sw[mnpcod]
  6. .tmp
  7. *.tmp
  8. *.tmp.*
  9. UserInterfaceState.xcuserstate
  10. $RECYCLE.BIN/
  11. *.log
  12. log.txt
  13. /.sourcemaps
  14. /.versions
  15. /coverage
  16. # Ionic
  17. /.ionic
  18. /www
  19. /platforms
  20. /plugins
  21. # Compiled output
  22. /dist
  23. /tmp
  24. /out-tsc
  25. /bazel-out
  26. # Node
  27. /node_modules
  28. npm-debug.log
  29. yarn-error.log
  30. # IDEs and editors
  31. .idea/
  32. .project
  33. .classpath
  34. .c9/
  35. *.launch
  36. .settings/
  37. *.sublime-project
  38. *.sublime-workspace
  39. # Visual Studio Code
  40. .vscode/*
  41. !.vscode/settings.json
  42. !.vscode/tasks.json
  43. !.vscode/launch.json
  44. !.vscode/extensions.json
  45. .history/*
  46. # Miscellaneous
  47. /.angular
  48. /.angular/cache
  49. .sass-cache/
  50. /.nx
  51. /.nx/cache
  52. /connect.lock
  53. /coverage
  54. /libpeerconnection.log
  55. testem.log
  56. /typings
  57. # System files
  58. .DS_Store
  59. Thumbs.db