Skip to content

Commit a247a76

Browse files
committedNov 2, 2018
Sync Templates
1 parent 9d5b000 commit a247a76

File tree

1 file changed

+68
-9
lines changed

1 file changed

+68
-9
lines changed
 

‎.gitignore

+68-9
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ venv.bak/
115115
.dmypy.json
116116
dmypy.json
117117

118+
# Pyre type checker
119+
.pyre/
120+
118121
# VirtualEnv rules
119122
# Virtualenv
120123
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
@@ -390,17 +393,11 @@ tmtags
390393
#
391394
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
392395

393-
## User settings
394-
xcuserdata/
395-
396-
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
397-
*.xcscmblueprint
398-
*.xccheckout
399-
400-
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
396+
## Build generated
401397
build/
402398
DerivedData/
403-
*.moved-aside
399+
400+
## Various settings
404401
*.pbxuser
405402
!default.pbxuser
406403
*.mode1v3
@@ -409,6 +406,68 @@ DerivedData/
409406
!default.mode2v3
410407
*.perspectivev3
411408
!default.perspectivev3
409+
xcuserdata/
410+
411+
## Other
412+
*.moved-aside
413+
*.xccheckout
414+
*.xcscmblueprint
415+
416+
## Obj-C/Swift specific
417+
*.hmap
418+
*.ipa
419+
*.dSYM.zip
420+
*.dSYM
421+
422+
## Playgrounds
423+
timeline.xctimeline
424+
playground.xcworkspace
425+
426+
# Swift Package Manager
427+
#
428+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
429+
# Packages/
430+
# Package.pins
431+
# Package.resolved
432+
.build/
433+
434+
# CocoaPods
435+
#
436+
# We recommend against adding the Pods directory to your .gitignore. However
437+
# you should judge for yourself, the pros and cons are mentioned at:
438+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
439+
#
440+
# Pods/
441+
#
442+
# Add this line if you want to avoid checking in source code from the Xcode workspace
443+
# *.xcworkspace
444+
445+
# Carthage
446+
#
447+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
448+
# Carthage/Checkouts
449+
450+
Carthage/Build
451+
452+
# fastlane
453+
#
454+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
455+
# screenshots whenever they are needed.
456+
# For more information about the recommended setup visit:
457+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
458+
459+
fastlane/report.xml
460+
fastlane/Preview.html
461+
fastlane/screenshots/**/*.png
462+
fastlane/test_output
463+
464+
# Code Injection
465+
#
466+
# After new code Injection tools there's a generated folder /iOSInjectionProject
467+
# https://github.com/johnno1962/injectionforxcode
468+
469+
iOSInjectionProject/
470+
412471

413472
# Eclipse rules
414473

0 commit comments

Comments
 (0)
Please sign in to comment.