Skip to content

Commit

Permalink
Merge pull request #64 from revtel/feat/rn72
Browse files Browse the repository at this point in the history
Feat/rn72
  • Loading branch information
whitedogg13 authored Jun 12, 2024
2 parents e95274b + 391811a commit 12bcf68
Show file tree
Hide file tree
Showing 50 changed files with 20,606 additions and 21,038 deletions.
16 changes: 2 additions & 14 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
module.exports = {
root: true,
extends: '@react-native-community',
extends: '@react-native',
rules: {
'one-var': 'off',
'no-multi-assign': 'off',
'no-nested-ternary': 'off',
'no-unused-vars': 'off',
'global-require': 'off',

'import/no-extraneous-dependencies': 'off',
'import/first': 'off',

'react-native/no-inline-styles': 'off',
'react-native/no-unused-styles': 'warn',
'react-native/split-platform-components': 'off',
'react-native/no-raw-text': 'off',
'react-native/no-inline-styles': 0,
},
};
77 changes: 0 additions & 77 deletions .flowconfig

This file was deleted.

17 changes: 11 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ DerivedData
*.hmap
*.ipa
*.xcuserstate
ios/.xcode.env.local

# Android/IntelliJ
#
Expand All @@ -28,19 +29,17 @@ build/
.gradle
local.properties
*.iml
*.hprof
.cxx/
*.keystore
!debug.keystore

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
Expand All @@ -60,6 +59,12 @@ buck-out/
/ios/Pods/
/vendor/bundle/

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*

# testing
/coverage

# by revtel
.env
*.jsbundle.map
Expand Down
1 change: 0 additions & 1 deletion .ruby-version

This file was deleted.

9 changes: 7 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
source 'https://rubygems.org'

# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby '2.7.5'
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
ruby ">= 2.6.10"

# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper
# bound in the template on Cocoapods with next React Native release.
gem 'cocoapods', '>= 1.13', '< 1.15'
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'
Loading

0 comments on commit 12bcf68

Please sign in to comment.