.gitignore 694 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Build and Release Folders
  2. bin-debug/
  3. bin-release/
  4. [Oo]bj/
  5. # Other files and folders
  6. .settings/
  7. .venv/
  8. .tests/
  9. .vscode/
  10. .idea/
  11. __pycache__/
  12. **/__pycache__/
  13. *.pyc
  14. *.pyo
  15. *.log
  16. tests/
  17. todo.md
  18. # Executables
  19. *.swf
  20. *.air
  21. *.ipa
  22. *.apk
  23. # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
  24. # should NOT be excluded as they contain compiler settings and other important
  25. # information for Eclipse / Flash Builder.
  26. .DS_Store
  27. node_modules/
  28. dist/
  29. npm-debug.log*
  30. yarn-debug.log*
  31. yarn-error.log*
  32. **/*.log
  33. tests/**/coverage/
  34. tests/e2e/reports
  35. selenium-debug.log
  36. # Editor directories and files
  37. .idea
  38. .vscode
  39. *.suo
  40. *.ntvs*
  41. *.njsproj
  42. *.sln
  43. *.local
  44. package-lock.json
  45. yarn.lock