Skip to content

Commit 12bcf68

Browse files
authored
Merge pull request #64 from revtel/feat/rn72
Feat/rn72
2 parents e95274b + 391811a commit 12bcf68

Some content is hidden

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

50 files changed

+20606
-21038
lines changed

.eslintrc.js

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
11
module.exports = {
22
root: true,
3-
extends: '@react-native-community',
3+
extends: '@react-native',
44
rules: {
5-
'one-var': 'off',
6-
'no-multi-assign': 'off',
7-
'no-nested-ternary': 'off',
8-
'no-unused-vars': 'off',
9-
'global-require': 'off',
10-
11-
'import/no-extraneous-dependencies': 'off',
12-
'import/first': 'off',
13-
14-
'react-native/no-inline-styles': 'off',
15-
'react-native/no-unused-styles': 'warn',
16-
'react-native/split-platform-components': 'off',
17-
'react-native/no-raw-text': 'off',
5+
'react-native/no-inline-styles': 0,
186
},
197
};

.flowconfig

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

.gitignore

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ DerivedData
2020
*.hmap
2121
*.ipa
2222
*.xcuserstate
23+
ios/.xcode.env.local
2324

2425
# Android/IntelliJ
2526
#
@@ -28,19 +29,17 @@ build/
2829
.gradle
2930
local.properties
3031
*.iml
32+
*.hprof
33+
.cxx/
34+
*.keystore
35+
!debug.keystore
3136

3237
# node.js
3338
#
3439
node_modules/
3540
npm-debug.log
3641
yarn-error.log
3742

38-
# BUCK
39-
buck-out/
40-
\.buckd/
41-
*.keystore
42-
!debug.keystore
43-
4443
# fastlane
4544
#
4645
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
@@ -60,6 +59,12 @@ buck-out/
6059
/ios/Pods/
6160
/vendor/bundle/
6261

62+
# Temporary files created by Metro to check the health of the file watcher
63+
.metro-health-check*
64+
65+
# testing
66+
/coverage
67+
6368
# by revtel
6469
.env
6570
*.jsbundle.map

.ruby-version

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

Gemfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
source 'https://rubygems.org'
2+
23
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
3-
ruby '2.7.5'
4-
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
4+
ruby ">= 2.6.10"
5+
6+
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
7+
# bound in the template on Cocoapods with next React Native release.
8+
gem 'cocoapods', '>= 1.13', '< 1.15'
9+
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'

0 commit comments

Comments
 (0)