add expo app

This commit is contained in:
Jorrin
2024-01-14 14:56:39 +01:00
parent 833a1c8ecd
commit 326ff1fe92
33 changed files with 11940 additions and 1507 deletions

31
apps/mobile/.eslintrc.js Normal file
View File

@@ -0,0 +1,31 @@
module.exports = {
extends: ['../../.eslintrc.js'],
ignorePatterns: ['/*.js', '/*.d.ts'],
overrides: [
{
files: ['*.ts', '*.tsx', '*.js', '*.jsx'],
rules: {},
},
{
files: ['*.ts', '*.tsx'],
rules: {},
},
{
files: ['*.js', '*.jsx'],
rules: {},
},
],
rules: {
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
'react/require-default-props': 'off',
'react/destructuring-assignment': 'off',
'react/jsx-filename-extension': [
'error',
{ extensions: ['.js', '.tsx', '.jsx'] },
],
'react/jsx-props-no-spreading': 'off',
'react/no-unstable-nested-components': 'off',
'no-use-before-define': 'off',
},
};