mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-04-28 20:35:19 +08:00
20 lines
382 B
JavaScript
20 lines
382 B
JavaScript
module.exports = {
|
|
parser: 'babel-eslint',
|
|
extends: [
|
|
'standard',
|
|
'prettier',
|
|
'prettier/flowtype',
|
|
'prettier/react',
|
|
'prettier/standard',
|
|
],
|
|
plugins: ['react', 'react-native', 'import', 'jest'],
|
|
env: {
|
|
'react-native/react-native': true,
|
|
'jest/globals': true,
|
|
},
|
|
rules: {
|
|
'import/no-unresolved': 2,
|
|
'react/jsx-uses-vars': 2,
|
|
},
|
|
};
|