Skip to content

Commit 0c11a20

Browse files
committed
init commit
0 parents  commit 0c11a20

File tree

147 files changed

+13486
-0
lines changed

Some content is hidden

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

147 files changed

+13486
-0
lines changed

.bundle/config

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BUNDLE_PATH: "vendor/bundle"
2+
BUNDLE_FORCE_RUBY_PLATFORM: 1

.eslintrc.js

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
module.exports = {
2+
root: true,
3+
extends: [
4+
'@react-native-community',
5+
'plugin:import/errors',
6+
'plugin:import/warnings',
7+
'plugin:import/typescript',
8+
'plugin:react-hooks/recommended',
9+
],
10+
parser: '@typescript-eslint/parser',
11+
plugins: ['@typescript-eslint', 'react', 'import', 'react-hooks'],
12+
overrides: [
13+
{
14+
files: ['*.ts', '*.tsx'],
15+
rules: {
16+
'no-shadow': 'off',
17+
'@typescript-eslint/no-shadow': 'off',
18+
semi: 'off',
19+
quotes: 'off',
20+
'no-unused-vars': 'off',
21+
'import/no-named-as-default': 'off',
22+
'import/namespace': 'off',
23+
'import/no-unresolved': 'off',
24+
'import/order': [
25+
'error',
26+
{
27+
groups: ['builtin', 'external', 'internal'],
28+
pathGroups: [
29+
{
30+
pattern: 'react',
31+
group: 'external',
32+
position: 'before',
33+
},
34+
],
35+
pathGroupsExcludedImportTypes: ['react'],
36+
'newlines-between': 'always',
37+
alphabetize: {
38+
order: 'asc',
39+
caseInsensitive: true,
40+
},
41+
},
42+
],
43+
'react-hooks/rules-of-hooks': 'error',
44+
'react-hooks/exhaustive-deps': 'warn',
45+
},
46+
},
47+
],
48+
};

.gitignore

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
ios/.xcode.env.local
24+
25+
# Android/IntelliJ
26+
#
27+
build/
28+
.idea
29+
.gradle
30+
local.properties
31+
*.iml
32+
*.hprof
33+
.cxx/
34+
*.keystore
35+
!debug.keystore
36+
37+
# node.js
38+
#
39+
node_modules/
40+
npm-debug.log
41+
yarn-error.log
42+
43+
# fastlane
44+
#
45+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
46+
# screenshots whenever they are needed.
47+
# For more information about the recommended setup visit:
48+
# https://docs.fastlane.tools/best-practices/source-control/
49+
50+
**/fastlane/report.xml
51+
**/fastlane/Preview.html
52+
**/fastlane/screenshots
53+
**/fastlane/test_output
54+
55+
# Bundle artifact
56+
*.jsbundle
57+
58+
# Ruby / CocoaPods
59+
/ios/Pods/
60+
/vendor/bundle/
61+
62+
# Temporary files created by Metro to check the health of the file watcher
63+
.metro-health-check*
64+
65+
# testing
66+
/coverage

.prettierrc.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module.exports = {
2+
printWidth: 80,
3+
tabWidth: 2,
4+
semi: false,
5+
endOfLine: 'lf',
6+
arrowParens: 'always',
7+
bracketSpacing: true,
8+
quoteProps: 'as-needed',
9+
jsxSingleQuote: false,
10+
jsxBracketSameLine: false,
11+
singleQuote: true,
12+
trailingComma: 'all',
13+
};

.vscode/settings.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"cSpell.words": [
3+
"gradlew",
4+
"LGSVG",
5+
"Linotte",
6+
"MMKV",
7+
"persistor",
8+
"Pressable",
9+
"Reauth",
10+
"reduxjs",
11+
"reduxs"
12+
],
13+
"editor.formatOnSave": true
14+
}

.watchmanconfig

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

Gemfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://rubygems.org'
2+
3+
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4+
ruby ">= 2.6.10"
5+
6+
gem 'cocoapods', '~> 1.12'

0 commit comments

Comments
 (0)