// .eslintrc.cjs | |
module.exports = { | |
env: { browser: true, es2021: true }, | |
extends: ['standard', 'plugin:react/recommended', 'prettier'], | |
parserOptions: { | |
ecmaVersion: 'latest', | |
sourceType: 'module', | |
ecmaFeatures: { jsx: true }, | |
}, | |
plugins: ['react'], | |
rules: { | |
'react/react-in-jsx-scope': 'off', | |
}, | |
} |