|
1 | 1 | example/
|
| 2 | + |
| 3 | +test/ |
| 4 | +res/generated/ |
| 5 | + |
| 6 | +.npmignore |
| 7 | + |
| 8 | + |
| 9 | +################# |
| 10 | +# from .gitignore: |
| 11 | +################ |
| 12 | + |
| 13 | + |
| 14 | +############ |
| 15 | +# Node |
| 16 | +############ |
| 17 | +# Logs |
| 18 | +logs |
| 19 | +*.log |
| 20 | +npm-debug.log* |
| 21 | + |
| 22 | +# Runtime data |
| 23 | +pids |
| 24 | +*.pid |
| 25 | +*.seed |
| 26 | + |
| 27 | +# Directory for instrumented libs generated by jscoverage/JSCover |
| 28 | +lib-cov |
| 29 | + |
| 30 | +# Coverage directory used by tools like istanbul |
| 31 | +coverage |
| 32 | + |
| 33 | +# nyc test coverage |
| 34 | +.nyc_output |
| 35 | + |
| 36 | +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) |
| 37 | +.grunt |
| 38 | + |
| 39 | +# node-waf configuration |
| 40 | +.lock-wscript |
| 41 | + |
| 42 | +# Compiled binary addons (http://nodejs.org/api/addons.html) |
| 43 | +build/Release |
| 44 | + |
| 45 | +# Dependency directories |
| 46 | +node_modules |
| 47 | +jspm_packages |
| 48 | + |
| 49 | +# Optional npm cache directory |
| 50 | +.npm |
| 51 | + |
| 52 | +# Optional REPL history |
| 53 | +.node_repl_history |
| 54 | + |
| 55 | +################ |
| 56 | +# JetBrains |
| 57 | +################ |
| 58 | +.idea |
| 59 | + |
| 60 | +## File-based project format: |
| 61 | +*.iws |
| 62 | + |
| 63 | +## Plugin-specific files: |
| 64 | + |
| 65 | +# IntelliJ |
| 66 | +/out/ |
| 67 | + |
| 68 | +# mpeltonen/sbt-idea plugin |
| 69 | +.idea_modules/ |
| 70 | + |
| 71 | +# JIRA plugin |
| 72 | +atlassian-ide-plugin.xml |
| 73 | + |
| 74 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 75 | +com_crashlytics_export_strings.xml |
| 76 | +crashlytics.properties |
| 77 | +crashlytics-build.properties |
| 78 | +fabric.properties |
| 79 | + |
| 80 | + |
| 81 | +############ |
| 82 | +# iOS |
| 83 | +############ |
| 84 | +# Xcode |
| 85 | +# |
| 86 | +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore |
| 87 | + |
| 88 | +## Build generated |
| 89 | +ios/build/ |
| 90 | +ios/DerivedData/ |
| 91 | + |
| 92 | +## Various settings |
| 93 | +*.pbxuser |
| 94 | +!default.pbxuser |
| 95 | +*.mode1v3 |
| 96 | +!default.mode1v3 |
| 97 | +*.mode2v3 |
| 98 | +!default.mode2v3 |
| 99 | +*.perspectivev3 |
| 100 | +!default.perspectivev3 |
| 101 | +ios/xcuserdata/ |
| 102 | + |
| 103 | +## Other |
| 104 | +*.moved-aside |
| 105 | +*.xcuserstate |
| 106 | + |
| 107 | +## Obj-C/Swift specific |
| 108 | +*.hmap |
| 109 | +*.ipa |
| 110 | +*.dSYM.zip |
| 111 | +*.dSYM |
| 112 | + |
| 113 | +# CocoaPods |
| 114 | +# |
| 115 | +# We recommend against adding the Pods directory to your .gitignore. However |
| 116 | +# you should judge for yourself, the pros and cons are mentioned at: |
| 117 | +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control |
| 118 | +# |
| 119 | +ios/Pods/ |
| 120 | + |
| 121 | +# Carthage |
| 122 | +# |
| 123 | +# Add this line if you want to avoid checking in source code from Carthage dependencies. |
| 124 | +# Carthage/Checkouts |
| 125 | + |
| 126 | +Carthage/Build |
| 127 | + |
| 128 | +# fastlane |
| 129 | +# |
| 130 | +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the |
| 131 | +# screenshots whenever they are needed. |
| 132 | +# For more information about the recommended setup visit: |
| 133 | +# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md |
| 134 | + |
| 135 | +fastlane/report.xml |
| 136 | +fastlane/screenshots |
| 137 | + |
| 138 | + |
| 139 | +############ |
| 140 | +# Android |
| 141 | +############ |
| 142 | +# Built application files |
| 143 | +*.apk |
| 144 | +*.ap_ |
| 145 | + |
| 146 | +# Files for the Dalvik VM |
| 147 | +*.dex |
| 148 | + |
| 149 | +# Java class files |
| 150 | +*.class |
| 151 | + |
| 152 | +# Generated files |
| 153 | +android/bin/ |
| 154 | +android/gen/ |
| 155 | +android/out/ |
| 156 | + |
| 157 | +# Gradle files |
| 158 | +android/.gradle/ |
| 159 | +android/build/ |
| 160 | +android/*/build/ |
| 161 | + |
| 162 | +# Local configuration file (sdk path, etc) |
| 163 | +local.properties |
| 164 | + |
| 165 | +# Proguard folder generated by Eclipse |
| 166 | +android/proguard/ |
| 167 | + |
| 168 | +# Log Files |
| 169 | +*.log |
| 170 | + |
| 171 | +# Android Studio Navigation editor temp files |
| 172 | +android/.navigation/ |
| 173 | + |
| 174 | +# Android Studio captures folder |
| 175 | +android/captures/ |
| 176 | + |
| 177 | +# Intellij |
| 178 | +*.iml |
| 179 | + |
| 180 | +# Keystore files |
| 181 | +*.jks |
| 182 | + |
| 183 | +################## |
| 184 | +# React-Native |
| 185 | +################## |
| 186 | +# OSX |
| 187 | +# |
| 188 | +.DS_Store |
| 189 | + |
| 190 | +# Xcode |
| 191 | +# |
| 192 | +build/ |
| 193 | +*.pbxuser |
| 194 | +!default.pbxuser |
| 195 | +*.mode1v3 |
| 196 | +!default.mode1v3 |
| 197 | +*.mode2v3 |
| 198 | +!default.mode2v3 |
| 199 | +*.perspectivev3 |
| 200 | +!default.perspectivev3 |
| 201 | +xcuserdata |
| 202 | +*.xccheckout |
| 203 | +*.moved-aside |
| 204 | +DerivedData |
| 205 | +*.hmap |
| 206 | +*.ipa |
| 207 | +*.xcuserstate |
| 208 | +project.xcworkspace |
| 209 | + |
| 210 | +# Android/IJ |
| 211 | +# |
| 212 | +.idea |
| 213 | +android/.idea |
| 214 | +android/.gradle |
| 215 | +android/local.properties |
| 216 | + |
| 217 | +# node.js |
| 218 | +# |
| 219 | +node_modules/ |
| 220 | +npm-debug.log |
| 221 | + |
| 222 | +# BUCK |
| 223 | +buck-out/ |
| 224 | +\.buckd/ |
| 225 | +android/app/libs |
| 226 | +android/keystores/debug.keystore |
0 commit comments