-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from revtel/feat/rn72
Feat/rn72
- Loading branch information
Showing
50 changed files
with
20,606 additions
and
21,038 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
Oops, something went wrong.