Skip to content

Commit a5c22c9

Browse files
committed
Rewrite in TypeScript and functional components
1 parent 3f99ea6 commit a5c22c9

Some content is hidden

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

74 files changed

+12165
-4652
lines changed

.babelrc

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

.buckconfig

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

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/dist
2+
/node_modules

.eslintrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
root: true,
3+
extends: '@react-native-community',
4+
};

.flowconfig

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

.gitattributes

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

.gitignore

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,7 @@ DerivedData
2020
*.hmap
2121
*.ipa
2222
*.xcuserstate
23-
project.xcworkspace
24-
25-
# Eclipse
26-
.project
27-
.settings
28-
.classpath
23+
ios/.xcode.env.local
2924

3025
# Android/IntelliJ
3126
#
@@ -34,25 +29,38 @@ build/
3429
.gradle
3530
local.properties
3631
*.iml
32+
*.hprof
33+
.cxx/
34+
*.keystore
35+
!debug.keystore
3736

3837
# node.js
3938
#
4039
node_modules/
4140
npm-debug.log
4241
yarn-error.log
4342

44-
# BUCK
45-
buck-out/
46-
\.buckd/
47-
*.keystore
48-
4943
# fastlane
5044
#
5145
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
5246
# screenshots whenever they are needed.
5347
# For more information about the recommended setup visit:
54-
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
48+
# https://docs.fastlane.tools/best-practices/source-control/
49+
50+
**/fastlane/report.xml
51+
**/fastlane/Preview.html
52+
**/fastlane/screenshots
53+
**/fastlane/test_output
54+
55+
# Bundle artifact
56+
*.jsbundle
57+
58+
# Ruby / CocoaPods
59+
/ios/Pods/
60+
/vendor/bundle/
61+
62+
# Temporary files created by Metro to check the health of the file watcher
63+
.metro-health-check*
5564

56-
fastlane/report.xml
57-
fastlane/Preview.html
58-
fastlane/screenshots
65+
/dist
66+
!/dist/.gitkeep

.npmignore

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
1-
Sample/
1+
.vscode/
2+
.github/
3+
.prettierrc.js
4+
.eslintrc.js
5+
yarn.lock
6+
tsconfig.json
7+
babel.config.js
8+
node_modules/
9+
__tests__/
210
screenshots/
11+
Sample/
12+
src/
13+
scripts/

.prettierrc.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
arrowParens: 'avoid',
3+
bracketSameLine: true,
4+
bracketSpacing: false,
5+
singleQuote: true,
6+
trailingComma: 'all',
7+
};

.watchmanconfig

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

0 commit comments

Comments
 (0)