Skip to content

Commit

Permalink
Merge pull request #42 from fingerprintjs/topic/gitignore
Browse files Browse the repository at this point in the history
Clean up .gitignore files
  • Loading branch information
mgutski committed Jul 20, 2023
2 parents b34f55f + f91bcdb commit 5046319
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 88 deletions.
94 changes: 6 additions & 88 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,93 +1,11 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
### macOS ###

## User settings
xcuserdata/

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
*.xccheckout

## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
build/
DerivedData/
*.moved-aside
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3

## Obj-C/Swift specific
*.hmap

## App packaging
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
# Package.resolved
# *.xcodeproj
#
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
# hence it is not needed unless you have added a package configuration file to your project
# .swiftpm

.build/

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/
#
# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build/

# Accio dependency management
Dependencies/
.accio/

# fastlane
#
# It is recommended to not store the screenshots in the git repo.
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control
.DS_Store

Sources/fastlane/report.xml
Sources/fastlane/Preview.html
Sources/fastlane/screenshots/**/*.png
Sources/fastlane/test_output
### Xcode ###

# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode
xcuserdata/

iOSInjectionProject/
### SwiftPM ###

# MacOS
.DS_Store
/.build/
16 changes: 16 additions & 0 deletions DemoApp/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
### CocoaPods ###

Pods/

### fastlane ###

# fastlane specific
**/fastlane/report.xml

# deliver temporary files
**/fastlane/Preview.html

# snapshot generated screenshots
**/fastlane/screenshots/

# scan temporary files
**/fastlane/test_output/

0 comments on commit 5046319

Please sign in to comment.