mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 17:03:26 +00:00
add expo app
This commit is contained in:
31
apps/mobile/.eslintrc.js
Normal file
31
apps/mobile/.eslintrc.js
Normal 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',
|
||||
},
|
||||
};
|
Reference in New Issue
Block a user