.gitignore 813 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .DS_Store
  2. node_modules/
  3. dist/
  4. npm-debug.log*
  5. yarn-debug.log*
  6. yarn-error.log*
  7. **/*.log
  8. tests/**/coverage/
  9. tests/e2e/reports
  10. selenium-debug.log
  11. # Editor directories and files
  12. .idea
  13. .vscode
  14. *.suo
  15. *.ntvs*
  16. *.njsproj
  17. *.sln
  18. *.local
  19. package-lock.json
  20. yarn.lock
  21. ### macOS ###
  22. # General
  23. .DS_Store
  24. .AppleDouble
  25. .LSOverride
  26. # Icon must end with two \r
  27. Icon
  28. # Thumbnails
  29. ._*
  30. # Files that might appear in the root of a volume
  31. .DocumentRevisions-V100
  32. .fseventsd
  33. .Spotlight-V100
  34. .TemporaryItems
  35. .Trashes
  36. .VolumeIcon.icns
  37. .com.apple.timemachine.donotpresent
  38. # Directories potentially created on remote AFP share
  39. .AppleDB
  40. .AppleDesktop
  41. Network Trash Folder
  42. Temporary Items
  43. .apdisk
  44. ### VisualStudioCode ###
  45. .vscode/*
  46. !.vscode/settings.json
  47. !.vscode/tasks.json
  48. !.vscode/launch.json
  49. !.vscode/extensions.json
  50. *.code-workspace