Skip to content

Commit

Permalink
Merge branch 'main' into @tboba/dynamic-use-header-height
Browse files Browse the repository at this point in the history
  • Loading branch information
tboba committed Sep 18, 2023
2 parents 6a0e88b + bc899b8 commit d893498
Show file tree
Hide file tree
Showing 94 changed files with 11,121 additions and 10,146 deletions.
7 changes: 4 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ module.exports = {
'plugin:import/warnings',
'plugin:react/recommended',
'prettier',
'prettier/react',
'prettier/standard',
],

plugins: ['react-native', 'react-hooks'],
Expand Down Expand Up @@ -51,17 +49,20 @@ module.exports = {
{
files: ['*.{ts,tsx}'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: ['./tsconfig.json'],
},
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:import/typescript',
'prettier/@typescript-eslint',
],
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
},
rules: {
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/array-type': 'error',
'@typescript-eslint/consistent-type-assertions': [
'error',
Expand Down
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: software-mansion
1 change: 1 addition & 0 deletions .github/workflows/android-build-test-fabric.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
env:
WORKING_DIRECTORY: FabricTestExample
concurrency:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/android-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 60
env:
WORKING_DIRECTORY: TestsExample
concurrency:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/android-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v1
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '17'
distribution: 'zulu'
cache: 'gradle'
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ios-build-test-fabric.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ on:
jobs:
build:
runs-on: macos-12
timeout-minutes: 60
env:
WORKING_DIRECTORY: FabricTestExample
concurrency:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ios-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:
jobs:
build:
runs-on: macos-12
timeout-minutes: 60
env:
WORKING_DIRECTORY: TestsExample
concurrency:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tv-os-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:
jobs:
build:
runs-on: macos-12
timeout-minutes: 60
env:
WORKING_DIRECTORY: TVOSExample
concurrency:
Expand Down
5 changes: 4 additions & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
module.exports = {
arrowParens: 'avoid',
bracketSameLine: true,
bracketSpacing: true,
singleQuote: true,
jsxBracketSameLine: true,
trailingComma: 'es5',
};
6 changes: 0 additions & 6 deletions Example/.buckconfig

This file was deleted.

4 changes: 4 additions & 0 deletions Example/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.export = {
root: true,
extends: '@react-native',
};
67 changes: 0 additions & 67 deletions Example/.flowconfig

This file was deleted.

14 changes: 9 additions & 5 deletions Example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,16 @@ build/
local.properties
*.iml
*.hprof
.cxx/
*.keystore
!debug.keystore

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

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

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
Expand All @@ -61,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

# Android cpatures
/android/captures

Expand Down
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,4 +1,4 @@
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'
gem 'cocoapods', '~> 1.12'
Loading

0 comments on commit d893498

Please sign in to comment.