Files
payloadcms/packages/eslint-config-payload/eslint-config/configs/react/index.js
2024-03-06 13:30:13 -05:00

20 lines
373 B
JavaScript

/** @type {import('eslint').Linter.Config} */
module.exports = {
env: {
browser: true,
},
plugins: ['jsx-a11y', 'react-hooks', 'react'],
settings: {
react: {
version: 'detect',
},
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
extends: ['./rules/react-a11y.js', './rules/react.js'].map(require.resolve),
rules: {},
}