.gitignore 815 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Miscellaneous
  2. *.class
  3. *.log
  4. *.pyc
  5. *.swp
  6. .DS_Store
  7. .atom/
  8. .buildlog/
  9. .history
  10. .svn/
  11. migrate_working_dir/
  12. # IntelliJ related
  13. *.iml
  14. *.ipr
  15. *.iws
  16. .idea/
  17. # The .vscode folder contains launch configuration and tasks you configure in
  18. # VS Code which you may wish to be included in version control, so this line
  19. # is commented out by default.
  20. #.vscode/
  21. # Flutter/Dart/Pub related
  22. # Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
  23. /pubspec.lock
  24. **/doc/api/
  25. .dart_tool/
  26. .packages
  27. build/
  28. # Xcode
  29. .DS_Store
  30. */build/*
  31. *.pbxuser
  32. !default.pbxuser
  33. *.mode1v3
  34. !default.mode1v3
  35. *.mode2v3
  36. !default.mode2v3
  37. *.perspectivev3
  38. !default.perspectivev3
  39. xcuserdata
  40. profile
  41. *.moved-aside
  42. DerivedData
  43. .idea/
  44. *.hmap
  45. *.xccheckout
  46. *.xcworkspace
  47. !default.xcworkspace
  48. #CocoaPods
  49. Pods