You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

144 lines
3.4 KiB

  1. # Created by https://www.gitignore.io/api/xcode,swift,macos,fastlane
  2. # Edit at https://www.gitignore.io/?templates=xcode,swift,macos,fastlane
  3. ### fastlane ###
  4. # fastlane - A streamlined workflow tool for Cocoa deployment
  5. #
  6. # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
  7. # screenshots whenever they are needed.
  8. # For more information about the recommended setup visit:
  9. # https://docs.fastlane.tools/best-practices/source-control/#source-control
  10. # fastlane specific
  11. fastlane/report.xml
  12. # deliver temporary files
  13. fastlane/Preview.html
  14. # snapshot generated screenshots
  15. fastlane/screenshots/**/*.png
  16. fastlane/screenshots/screenshots.html
  17. # scan temporary files
  18. fastlane/test_output
  19. ### macOS ###
  20. # General
  21. .DS_Store
  22. .AppleDouble
  23. .LSOverride
  24. # Icon must end with two \r
  25. Icon
  26. # Thumbnails
  27. ._*
  28. # Files that might appear in the root of a volume
  29. .DocumentRevisions-V100
  30. .fseventsd
  31. .Spotlight-V100
  32. .TemporaryItems
  33. .Trashes
  34. .VolumeIcon.icns
  35. .com.apple.timemachine.donotpresent
  36. # Directories potentially created on remote AFP share
  37. .AppleDB
  38. .AppleDesktop
  39. Network Trash Folder
  40. Temporary Items
  41. .apdisk
  42. ### Swift ###
  43. # Xcode
  44. # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
  45. ## Build generated
  46. build/
  47. DerivedData/
  48. ## Various settings
  49. *.pbxuser
  50. !default.pbxuser
  51. *.mode1v3
  52. !default.mode1v3
  53. *.mode2v3
  54. !default.mode2v3
  55. *.perspectivev3
  56. !default.perspectivev3
  57. xcuserdata/
  58. ## Other
  59. *.moved-aside
  60. *.xccheckout
  61. *.xcscmblueprint
  62. ## Obj-C/Swift specific
  63. *.hmap
  64. *.ipa
  65. *.dSYM.zip
  66. *.dSYM
  67. ## Playgrounds
  68. timeline.xctimeline
  69. playground.xcworkspace
  70. # Swift Package Manager
  71. # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
  72. # Packages/
  73. # Package.pins
  74. # Package.resolved
  75. .build/
  76. # CocoaPods
  77. # We recommend against adding the Pods directory to your .gitignore. However
  78. # you should judge for yourself, the pros and cons are mentioned at:
  79. # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
  80. # Pods/
  81. # Add this line if you want to avoid checking in source code from the Xcode workspace
  82. # *.xcworkspace
  83. # Carthage
  84. # Add this line if you want to avoid checking in source code from Carthage dependencies.
  85. # Carthage/Checkouts
  86. Carthage/Build
  87. # Accio dependency management
  88. Dependencies/
  89. .accio/
  90. # fastlane
  91. # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
  92. # screenshots whenever they are needed.
  93. # For more information about the recommended setup visit:
  94. # https://docs.fastlane.tools/best-practices/source-control/#source-control
  95. # Code Injection
  96. # After new code Injection tools there's a generated folder /iOSInjectionProject
  97. # https://github.com/johnno1962/injectionforxcode
  98. iOSInjectionProject/
  99. ### Xcode ###
  100. # Xcode
  101. # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
  102. ## User settings
  103. ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
  104. ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
  105. ## Xcode Patch
  106. *.xcodeproj/*
  107. !*.xcodeproj/project.pbxproj
  108. !*.xcodeproj/xcshareddata/
  109. !*.xcworkspace/contents.xcworkspacedata
  110. /*.gcno
  111. ### Xcode Patch ###
  112. **/xcshareddata/WorkspaceSettings.xcsettings
  113. # End of https://www.gitignore.io/api/xcode,swift,macos,fastlane