|
1 | | -# OSX |
2 | | -.DS_Store |
3 | | -.vscode |
4 | | - |
5 | | -# Xcode |
6 | | -*.pbxuser |
7 | | -!default.pbxuser |
8 | | -*.mode1v3 |
9 | | -!default.mode1v3 |
10 | | -*.mode2v3 |
11 | | -!default.mode2v3 |
12 | | -*.perspectivev3 |
13 | | -!default.perspectivev3 |
14 | | -xcuserdata |
15 | | -*.xccheckout |
16 | | -*.moved-aside |
17 | | -DerivedData |
18 | | -*.hmap |
19 | | -*.ipa |
20 | | -*.xcuserstate |
21 | | -project.xcworkspace |
22 | | - |
23 | | -# Android/IntelliJ |
24 | | -build/ |
25 | | -.idea |
26 | | -.gradle |
27 | | -local.properties |
28 | | -*.iml |
29 | | -*.hprof |
30 | | - |
31 | | -# node.js |
32 | | -node_modules/ |
33 | | -npm-debug.log |
34 | | -yarn-error.log |
35 | | - |
36 | | -# BUCK |
37 | | -buck-out/ |
38 | | -\.buckd/ |
39 | | -*.keystore |
40 | | - |
41 | | -# fastlane |
42 | | -# |
43 | | -# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the |
44 | | -# screenshots whenever they are needed. |
45 | | -# For more information about the recommended setup visit: |
46 | | -# https://docs.fastlane.tools/best-practices/source-control/ |
47 | | - |
48 | | -*/fastlane/report.xml |
49 | | -*/fastlane/Preview.html |
50 | | -*/fastlane/screenshots |
51 | | - |
52 | | -# Bundle artifact |
53 | | -*.jsbundle |
54 | | - |
55 | | -# CocoaPods |
56 | | -*/ios/Pods/ |
57 | | -*/.expo/ |
58 | | -*/.yarn/ |
59 | | - |
60 | | -# MongoDB auth cert |
61 | | -X509-cert-6153357055082114367.pem |
62 | | - |
63 | | -# Python |
64 | | -__pycache__/ |
65 | | -.ruff_cache/ |
66 | | - |
67 | | -# env private |
68 | | -.env |
| 1 | +# OSX |
| 2 | +.DS_Store |
| 3 | + |
| 4 | +# Xcode |
| 5 | +!**/*.xcodeproj |
| 6 | +!**/*.pbxproj |
| 7 | +!**/*.xcworkspacedata |
| 8 | +!**/*.xcsettings |
| 9 | +!**/*.xcscheme |
| 10 | +*.pbxuser |
| 11 | +!default.pbxuser |
| 12 | +*.mode1v3 |
| 13 | +!default.mode1v3 |
| 14 | +*.mode2v3 |
| 15 | +!default.mode2v3 |
| 16 | +*.perspectivev3 |
| 17 | +!default.perspectivev3 |
| 18 | +xcuserdata |
| 19 | +*.xccheckout |
| 20 | +*.moved-aside |
| 21 | +DerivedData |
| 22 | +*.hmap |
| 23 | +*.ipa |
| 24 | +*.xcuserstate |
| 25 | +project.xcworkspace |
| 26 | +**/.xcode.env.local |
| 27 | + |
| 28 | +# Gradle |
| 29 | +/build/ |
| 30 | +/packages/react-native-gradle-plugin/build/ |
| 31 | +/packages/rn-tester/build |
| 32 | +/packages/rn-tester/android/app/.cxx/ |
| 33 | +/packages/rn-tester/android/app/build/ |
| 34 | +/packages/rn-tester/android/app/gradle/ |
| 35 | +/packages/rn-tester/android/app/gradlew |
| 36 | +/packages/rn-tester/android/app/gradlew.bat |
| 37 | +/packages/react-native/ReactAndroid/build/ |
| 38 | +/packages/react-native/ReactAndroid/.cxx/ |
| 39 | +/packages/react-native/ReactAndroid/gradle/ |
| 40 | +/packages/react-native/ReactAndroid/gradlew |
| 41 | +/packages/react-native/ReactAndroid/gradlew.bat |
| 42 | +/packages/react-native/ReactAndroid/external-artifacts/build/ |
| 43 | +/packages/react-native/ReactAndroid/external-artifacts/artifacts/ |
| 44 | +/packages/react-native/ReactAndroid/hermes-engine/build/ |
| 45 | +/packages/react-native/ReactAndroid/hermes-engine/.cxx/ |
| 46 | +/packages/react-native/template/android/app/build/ |
| 47 | +/packages/react-native/template/android/build/ |
| 48 | + |
| 49 | +# Android/IntelliJ |
| 50 | +build/ |
| 51 | +.idea |
| 52 | +.gradle |
| 53 | +local.properties |
| 54 | +*.iml |
| 55 | +*.hprof |
| 56 | +.project |
| 57 | +.settings |
| 58 | +.classpath |
| 59 | +/packages/react-native/android/* |
| 60 | +!/packages/react-native/android/README.md |
| 61 | + |
| 62 | +# node.js |
| 63 | +node_modules |
| 64 | +*.log |
| 65 | +.nvm |
| 66 | +package-lock.json |
| 67 | + |
| 68 | +# Buck |
| 69 | +.buckd |
| 70 | +buck-out |
| 71 | +/.lsp.buckd |
| 72 | +/.lsp-buck-out |
| 73 | +/packages/react-native/ReactAndroid/src/main/jni/prebuilt/lib/ |
| 74 | +/packages/react-native/ReactAndroid/src/main/gen |
| 75 | + |
| 76 | +# Watchman |
| 77 | +.watchmanconfig |
| 78 | + |
| 79 | +# Test generated files |
| 80 | +/packages/react-native/ReactAndroid/src/androidTest/assets/AndroidTestBundle.js |
| 81 | +*.js.meta |
| 82 | +/coverage |
| 83 | +/third-party |
| 84 | + |
| 85 | +# Test Reports |
| 86 | +/reports |
| 87 | + |
| 88 | +# Stack Dumps generated when programs crash (Ex. bash.exe.stackdump on Win) |
| 89 | +*.stackdump |
| 90 | + |
| 91 | +# Bundle artifact |
| 92 | +*.jsbundle |
| 93 | + |
| 94 | +# Ruby Gems (Bundler) |
| 95 | +/packages/react-native/vendor |
| 96 | +/packages/react-native/template/vendor |
| 97 | +.ruby-version |
| 98 | +/**/.ruby-version |
| 99 | + |
| 100 | +# CocoaPods |
| 101 | +*/ios/Pods/ |
| 102 | +*/.expo/ |
| 103 | +*/.yarn/ |
| 104 | + |
| 105 | +# MongoDB auth cert |
| 106 | +X509-cert-6153357055082114367.pem |
| 107 | + |
| 108 | +# Ignore RNTester specific Pods, but keep the __offline_mirrors__ here. |
| 109 | +/packages/rn-tester/Pods/* |
| 110 | +!/packages/rn-tester/Pods/__offline_mirrors_hermes__ |
| 111 | +!/packages/rn-tester/Pods/__offline_mirrors_jsc__ |
| 112 | + |
| 113 | +# @react-native/codegen |
| 114 | +/packages/react-native/React/FBReactNativeSpec/FBReactNativeSpec |
| 115 | +/packages/react-native-codegen/lib |
| 116 | +/packages/react-native-codegen/tmp/ |
| 117 | +/packages/react-native/ReactCommon/react/renderer/components/rncore/ |
| 118 | +/packages/rn-tester/NativeModuleExample/ScreenshotManagerSpec* |
| 119 | +/**/RCTThirdPartyFabricComponentsProvider.* |
| 120 | + |
| 121 | +# @react-native/codegen-typescript-test |
| 122 | +/packages/react-native-codegen-typescript-test/lib |
| 123 | + |
| 124 | +# Additional SDKs |
| 125 | +/packages/react-native/sdks/download |
| 126 | +/packages/react-native/sdks/hermes |
| 127 | +/packages/react-native/sdks/hermesc |
| 128 | + |
| 129 | +# Visual studio |
| 130 | +.vscode |
| 131 | +.vs |
| 132 | + |
| 133 | +# Temporary files created by Metro to check the health of the file watcher |
| 134 | +.metro-health-check* |
| 135 | + |
| 136 | +dist/ |
| 137 | +%ProgramData%/ |
| 138 | +.expo/ |
| 139 | + |
| 140 | +# Python |
| 141 | +__pycache__/ |
| 142 | +.ruff_cache/ |
| 143 | + |
| 144 | +# env private |
| 145 | +.env |
0 commit comments