ZBD | 7e88c22 | 2025-05-07 21:07:12 +0800 | [diff] [blame] | 1 | // .eslintrc.cjs |
2 | module.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 | } |