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