UNPKG

283 BJavaScriptView Raw
1module.exports = {
2 extends: [
3 'plugin:react/recommended',
4 '@wuxh/eslint-config-ts',
5 ],
6 settings: {
7 react: {
8 version: '17.0',
9 },
10 },
11 rules: {
12 'jsx-quotes': [
13 'error',
14 'prefer-double',
15 ],
16 'react/react-in-jsx-scope': 'off',
17 },
18}