Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RN 0.71.5 #1750

Draft
wants to merge 4 commits into
base: development
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lib/
**/lib/
11 changes: 6 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@
},
"extends": [
"airbnb",
"plugin:flowtype/recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:react-hooks/recommended"
],
"plugins": ["@babel", "@typescript-eslint", "flowtype", "module-resolver", "import"],
"plugins": ["@babel", "@typescript-eslint", "module-resolver", "import"],
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉

"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
Expand All @@ -22,9 +21,6 @@
"@typescript-eslint/no-use-before-define": ["error", { "variables": false }],
"@typescript-eslint/no-shadow": ["error"], // to deal with Enums properly

"flowtype/space-after-type-colon": "off",
"flowtype/no-types-missing-file-annotation": "off",

"module-resolver/use-alias": 0,

"import/extensions": [
Expand Down Expand Up @@ -56,6 +52,11 @@
"react/require-default-props": "off",
"react/jsx-props-no-spreading": "off",

// has a lot of false positives
"react/no-unused-prop-types": [0],
// has a lot of false positives
"react/no-unused-class-component-methods": "off",

"arrow-body-style": "off",
"arrow-parens": ["error", "as-needed"],
"quote-props": "off",
Expand Down
80 changes: 0 additions & 80 deletions .flowconfig

This file was deleted.

2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"eslint.options": { "configFile": ".eslintrc", "resolvePluginsRelativeTo": "." },
"eslint.options": { "overrideConfigFile": ".eslintrc", "resolvePluginsRelativeTo": "." },
"eslint.validate": ["typescript", "typescriptreact", "javascript", "javascriptreact"],
"javascript.validate.enable": false,
"[java]": {
Expand Down
6 changes: 0 additions & 6 deletions Example/.buckconfig

This file was deleted.

26 changes: 15 additions & 11 deletions Example/.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,39 +29,42 @@ 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
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/

*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots
**/fastlane/report.xml
**/fastlane/Preview.html
**/fastlane/screenshots
**/fastlane/test_output

# Bundle artifact
*.jsbundle

# CocoaPods
# Ruby / CocoaPods
/ios/Pods/
/vendor/bundle/

# Web build
web/assets/
.firebase

# Locks
/ios/Podfile.lock
/ios/Podfile.lock

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*
1 change: 1 addition & 0 deletions Example/.node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18
1 change: 0 additions & 1 deletion Example/.ruby-version

This file was deleted.

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

# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby '2.7.4'
ruby '3.0.0'

gem "fastlane"
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
gem 'cocoapods', '>= 1.11.3'
Loading