blob: d432afd1bac95d604d08a3215511552ad7362009 [file] [log] [blame]
ZBD7e88c222025-05-07 21:07:12 +08001// .eslintrc.cjs
2module.exports = {
3 env: { browser: true, es2021: true },
4 extends: ['standard', 'plugin:react/recommended', 'prettier'],
5 parserOptions: {
6 ecmaVersion: 'latest',
7 sourceType: 'module',
8 ecmaFeatures: { jsx: true },
9 },
10 plugins: ['react'],
11 rules: {
12 'react/react-in-jsx-scope': 'off',
13 },
14}