.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. # CMake
  2. cmake-build-*/
  3. # File-based project format
  4. *.iws
  5. # IntelliJ
  6. out/
  7. # mpeltonen/sbt-idea plugin
  8. .idea_modules/
  9. # JIRA plugin
  10. atlassian-ide-plugin.xml
  11. # Cursive Clojure plugin
  12. .idea/replstate.xml
  13. # Crashlytics plugin (for Android Studio and IntelliJ)
  14. com_crashlytics_export_strings.xml
  15. crashlytics.properties
  16. crashlytics-build.properties
  17. fabric.properties
  18. # Editor-based Rest Client
  19. .idea/httpRequests
  20. # Android studio 3.1+ serialized cache file
  21. .idea/caches/build_file_checksums.ser
  22. ### Node template
  23. # Logs
  24. logs
  25. *.log
  26. npm-debug.log*
  27. yarn-debug.log*
  28. yarn-error.log*
  29. lerna-debug.log*
  30. package-lock.json
  31. # Diagnostic reports (https://nodejs.org/api/report.html)
  32. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  33. # Runtime data
  34. pids
  35. *.pid
  36. *.seed
  37. *.pid.lock
  38. # Directory for instrumented libs generated by jscoverage/JSCover
  39. lib-cov
  40. # Coverage directory used by tools like istanbul
  41. coverage
  42. *.lcov
  43. # nyc test coverage
  44. .nyc_output
  45. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  46. .grunt
  47. # Bower dependency directory (https://bower.io/)
  48. bower_components
  49. # node-waf configuration
  50. .lock-wscript
  51. # Compiled binary addons (https://nodejs.org/api/addons.html)
  52. build/Release
  53. # Dependency directories
  54. node_modules/
  55. jspm_packages/
  56. # TypeScript v1 declaration files
  57. typings/
  58. # TypeScript cache
  59. *.tsbuildinfo
  60. # Optional npm cache directory
  61. .npm
  62. # Optional eslint cache
  63. .eslintcache
  64. # Optional REPL history
  65. .node_repl_history
  66. # Output of 'npm pack'
  67. *.tgz
  68. # Yarn Integrity file
  69. .yarn-integrity
  70. # dotenv environment variables file
  71. .env.test
  72. # parcel-bundler cache (https://parceljs.org/)
  73. .cache
  74. # next.js build output
  75. .next
  76. # nuxt.js build output
  77. .nuxt
  78. # vuepress build output
  79. .vuepress/dist
  80. # Serverless directories
  81. .serverless/
  82. # FuseBox cache
  83. .fusebox/
  84. # DynamoDB Local files
  85. .dynamodb/
  86. .idea