Skip to content

Commit 4c337c6

Browse files
authored
Merge pull request #134 from xmartlabs/new-example-app
[Chore] New Example App
2 parents 857581a + 680f20a commit 4c337c6

File tree

136 files changed

+15178
-10728
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+15178
-10728
lines changed

β€ŽGemfileβ€Ž

Lines changed: 0 additions & 9 deletions
This file was deleted.

β€Žexample/.babelrcβ€Ž

Lines changed: 0 additions & 12 deletions
This file was deleted.

β€Žexample/.buckconfigβ€Ž

Lines changed: 0 additions & 6 deletions
This file was deleted.

β€Žexample/.eslintrc.jsβ€Ž

Lines changed: 0 additions & 9 deletions
This file was deleted.

β€Žexample/.gitattributesβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.

β€Žexample/.gitignoreβ€Ž

100755100644
Lines changed: 33 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,39 @@
1-
# OSX
2-
#
3-
.DS_Store
4-
5-
# Xcode
6-
#
7-
build/
8-
*.pbxuser
9-
!default.pbxuser
10-
*.mode1v3
11-
!default.mode1v3
12-
*.mode2v3
13-
!default.mode2v3
14-
*.perspectivev3
15-
!default.perspectivev3
16-
xcuserdata
17-
*.xccheckout
18-
*.moved-aside
19-
DerivedData
20-
*.hmap
21-
*.ipa
22-
*.xcuserstate
23-
project.xcworkspace
24-
25-
# Android/IntelliJ
26-
#
27-
build/
28-
.idea
29-
.gradle
30-
local.properties
31-
*.iml
1+
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
322

33-
# Visual Studio Code
34-
#
35-
.vscode/
36-
37-
# node.js
38-
#
3+
# dependencies
394
node_modules/
40-
npm-debug.log
41-
yarn-error.log
42-
43-
# BUCK
44-
buck-out/
45-
\.buckd/
46-
*.keystore
47-
!debug.keystore
485

49-
# fastlane
50-
#
51-
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
52-
# screenshots whenever they are needed.
53-
# For more information about the recommended setup visit:
54-
# https://docs.fastlane.tools/best-practices/source-control/
6+
# Expo
7+
.expo/
8+
dist/
9+
web-build/
10+
expo-env.d.ts
11+
12+
# Native
13+
*.orig.*
14+
*.jks
15+
*.p8
16+
*.p12
17+
*.key
18+
*.mobileprovision
19+
20+
# Metro
21+
.metro-health-check*
22+
23+
# debug
24+
npm-debug.*
25+
yarn-debug.*
26+
yarn-error.*
27+
28+
# macOS
29+
.DS_Store
30+
*.pem
5531

56-
*/fastlane/report.xml
57-
*/fastlane/Preview.html
58-
*/fastlane/screenshots
32+
# local env files
33+
.env*.local
5934

60-
# Bundle artifact
61-
*.jsbundle
35+
# typescript
36+
*.tsbuildinfo
6237

63-
# CocoaPods
64-
/ios/Pods/
38+
android/
39+
ios/

β€Žexample/.prettierignoreβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.expo/*
2+
android/*
3+
ios/*
4+
node_modules/*
5+
6+
package-lock.json
7+
README.md

β€Žexample/.prettierrcβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"arrowParens": "avoid",
3+
"bracketSameLine": true,
4+
"bracketSpacing": true,
5+
"semi": false,
6+
"singleQuote": true
7+
}

β€Žexample/.prettierrc.jsβ€Ž

Lines changed: 0 additions & 7 deletions
This file was deleted.

β€Žexample/.watchmanconfigβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
Β (0)