Skip to content

Commit 59d1c4d

Browse files
committed
chore: It was everythings updated
1 parent 62a5eee commit 59d1c4d

Some content is hidden

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

61 files changed

+1673
-608
lines changed

.DS_Store

0 Bytes
Binary file not shown.

template/.eslintrc.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ module.exports = {
88

99
'prettier/@typescript-eslint',
1010
],
11-
plugins: ['jest', 'detox', '@typescript-eslint', 'react-native', 'eslint-plugin-react-hooks'],
11+
plugins: [
12+
'jest',
13+
'detox',
14+
'@typescript-eslint',
15+
'react-native',
16+
'eslint-plugin-react-hooks',
17+
],
1218

1319
rules: {
1420
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
@@ -26,6 +32,7 @@ module.exports = {
2632
'@typescript-eslint/no-empty-function': 0,
2733
'@typescript-eslint/ban-ts-ignore': 0,
2834
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
35+
'@typescript-eslint/explicit-module-boundary-types': 0,
2936
},
3037
settings: {
3138
react: {

template/.prettierrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ module.exports = {
66
tabWidth: 2,
77
arrowParens: 'always',
88
quoteProps: 'consistent',
9-
printWidth: 120,
9+
printWidth: 80,
1010
};

template/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const App = () => {
5555
);
5656
};
5757

58-
let codePushOptions: CodePushOptions = {
58+
const codePushOptions: CodePushOptions = {
5959
checkFrequency: codePush.CheckFrequency.ON_APP_RESUME,
6060
};
6161

File renamed without changes.

template/babel.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ module.exports = {
2828
'@auth': './src/modules/auth',
2929
'@store': './src/store',
3030
'@services': './src/services',
31+
'theme': './theme',
32+
'styles': './src/styles',
3133
},
3234
},
3335
],

template/ios/File.swift

Lines changed: 0 additions & 8 deletions
This file was deleted.

template/ios/HelloWorld.xcodeproj/project.pbxproj

Lines changed: 80 additions & 6 deletions
Large diffs are not rendered by default.

template/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1210"
3+
LastUpgradeVersion = "1250"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//
2+
// Use this file to import your target's public headers that you would like to expose to Swift.
3+
//
4+

0 commit comments

Comments
 (0)