191 строка
2.7 KiB
Plaintext
191 строка
2.7 KiB
Plaintext
# gitignore contributors: remember to update .npmignore
|
|
|
|
# OSX
|
|
#
|
|
.DS_Store
|
|
|
|
# Xcode
|
|
#
|
|
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
|
|
|
## Build generated
|
|
build/
|
|
DerivedData
|
|
|
|
## Various settings
|
|
*.pbxuser
|
|
!default.pbxuser
|
|
*.mode1v3
|
|
!default.mode1v3
|
|
*.mode2v3
|
|
!default.mode2v3
|
|
*.perspectivev3
|
|
!default.perspectivev3
|
|
xcuserdata
|
|
|
|
## Other
|
|
*.xccheckout
|
|
*.moved-aside
|
|
*.xcuserstate
|
|
|
|
## Obj-C/Swift specific
|
|
*.hmap
|
|
*.ipa
|
|
|
|
# CocoaPods
|
|
#
|
|
# We recommend against adding the Pods directory to your .gitignore. However
|
|
# you should judge for yourself, the pros and cons are mentioned at:
|
|
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
#
|
|
#Pods/
|
|
|
|
# Carthage
|
|
#
|
|
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
|
# Carthage/Checkouts
|
|
|
|
Carthage/Build
|
|
|
|
### Node
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
|
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
lib-cov
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage
|
|
|
|
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
.grunt
|
|
|
|
# node-waf configuration
|
|
.lock-wscript
|
|
|
|
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
|
build/Release
|
|
|
|
# Dependency directory
|
|
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
|
|
node_modules
|
|
|
|
# Xcode
|
|
#
|
|
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
|
|
|
## Build generated
|
|
build/
|
|
DerivedData
|
|
|
|
## Various settings
|
|
*.pbxuser
|
|
!default.pbxuser
|
|
*.mode1v3
|
|
!default.mode1v3
|
|
*.mode2v3
|
|
!default.mode2v3
|
|
*.perspectivev3
|
|
!default.perspectivev3
|
|
xcuserdata
|
|
|
|
## OSX
|
|
.DS_Store
|
|
|
|
## Other
|
|
*.xccheckout
|
|
*.moved-aside
|
|
*.xcuserstate
|
|
|
|
# Intellij project files
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.idea/
|
|
|
|
#Gradle
|
|
.gradletasknamecache
|
|
.gradle/
|
|
build/
|
|
bin/
|
|
|
|
# Built application files
|
|
*.apk
|
|
*.ap_
|
|
|
|
# Files for the Dalvik VM
|
|
*.dex
|
|
|
|
# Java class files
|
|
*.class
|
|
|
|
# Generated files
|
|
bin/
|
|
gen/
|
|
|
|
# Gradle files
|
|
.gradle/
|
|
build/
|
|
*/build/
|
|
|
|
# Local configuration file (sdk path, etc)
|
|
local.properties
|
|
|
|
# Proguard folder generated by Eclipse
|
|
proguard/
|
|
|
|
# Log Files
|
|
*.log
|
|
|
|
# Android Studio Navigation editor temp files
|
|
.navigation/
|
|
|
|
# Android Studio captures folder
|
|
captures/
|
|
|
|
# Remove after this framework is published on NPM
|
|
code-push-plugin-testing-framework/node_modules
|
|
|
|
# Windows
|
|
windows/.vs/
|
|
windows/obj/
|
|
|
|
#Visual Studio files
|
|
*.[Oo]bj
|
|
*.user
|
|
*.aps
|
|
*.pch
|
|
*.vspscc
|
|
*.vssscc
|
|
*_i.c
|
|
*_p.c
|
|
*.ncb
|
|
*.suo
|
|
*.tlb
|
|
*.tlh
|
|
*.bak
|
|
*.[Cc]ache
|
|
*.ilk
|
|
*.log
|
|
*.lib
|
|
*.sbr
|
|
*.sdf
|
|
*.opensdf
|
|
*.opendb
|
|
*.unsuccessfulbuild
|
|
ipch/
|
|
[Oo]bj/
|
|
[Bb]in
|
|
[Dd]ebug*/
|
|
[Rr]elease*/
|
|
Ankh.NoLoad
|
|
|
|
# RN New Version App Generation
|
|
Examples/testapp_rn |