SmartStopAPK/.eslintrc.js

14 lines
260 B
JavaScript

module.exports = {
root: true,
extends: [
'@react-native',
'plugin:react/jsx-runtime',
'@react-native-community',
],
rules: {
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
},
ignorePatterns: ['coverage'],
};