eslint-config/packages/react/index.js
2021-12-07 23:46:24 +08:00

19 lines
284 B
JavaScript

module.exports = {
extends: [
'plugin:react/recommended',
'@antfu/eslint-config-ts',
],
settings: {
react: {
version: '17.0',
},
},
rules: {
'jsx-quotes': [
'error',
'prefer-double',
],
'react/react-in-jsx-scope': 'off',
},
}