.gitignore 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #/////////////////////////////////////////////////////////////////////////////
  2. # Fireball Projects
  3. #/////////////////////////////////////////////////////////////////////////////
  4. /library/
  5. /temp/
  6. /local/
  7. # /build/
  8. #/////////////////////////////////////////////////////////////////////////////
  9. # npm files
  10. #/////////////////////////////////////////////////////////////////////////////
  11. npm-debug.log
  12. node_modules/
  13. #/////////////////////////////////////////////////////////////////////////////
  14. # Logs and databases
  15. #/////////////////////////////////////////////////////////////////////////////
  16. *.log
  17. *.sql
  18. *.sqlite
  19. #/////////////////////////////////////////////////////////////////////////////
  20. # files for debugger
  21. #/////////////////////////////////////////////////////////////////////////////
  22. *.sln
  23. *.csproj
  24. *.pidb
  25. *.unityproj
  26. *.suo
  27. #/////////////////////////////////////////////////////////////////////////////
  28. # OS generated files
  29. #/////////////////////////////////////////////////////////////////////////////
  30. .DS_Store
  31. ehthumbs.db
  32. Thumbs.db
  33. #/////////////////////////////////////////////////////////////////////////////
  34. # WebStorm files
  35. #/////////////////////////////////////////////////////////////////////////////
  36. .idea/
  37. #//////////////////////////
  38. # VS Code files
  39. #//////////////////////////
  40. .vscode/