SmartStopAPK/.eslintrc.js

14 lines
260 B
JavaScript
Raw Permalink Normal View History

2023-11-08 20:37:01 -03:00
module.exports = {
root: true,
2023-11-08 21:19:35 -03:00
extends: [
'@react-native',
'plugin:react/jsx-runtime',
'@react-native-community',
],
rules: {
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
},
ignorePatterns: ['coverage'],
2023-11-08 20:37:01 -03:00
};