-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslintrc.js
25 lines (25 loc) · 989 Bytes
/
eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest', // 5(默认), 你可以使用 6、7、8、9 或 10 来指定你想要使用的 ECMAScript 版本。你也可以用年份命名的版本号,你也可以用 latest 来指向最新的版本。
sourceType: 'module', // 设置为 "script" (默认) 或 "module"(如果你的代码是 ECMAScript 模块)。
ecmaFeatures: {
jsx: true, // 启用 JSX
},
},
env: {
node: true,
es6: true,
browser: true,
},
extends: ['eslint:recommended', 'prettier', 'plugin:react/recommended', 'plugin:react-hooks/recommended', 'plugin:@typescript-eslint/recommended'],
plugins: ['prettier', 'react', 'react-hooks', '@typescript-eslint'],
rules: {
quotes: [2, 'single'],
'react/no-this-in-sfc': 0,
'react/prop-types': 0,
'react/display-name': 'off',
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive -deps': 'warn',
},
}