-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
31 lines (31 loc) · 1 KB
/
.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
26
27
28
29
30
31
module.exports = {
"extends": "standard",
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"parser": "babel-eslint",
"rules": {
// 0/"off" 关闭规则
//1/"warn" 开启规则,使用警告,程序不会退出
//2/"error" 开启规则,使用错误,程序会退出
'semi':0, // 不加分号分号
"camelcase": 1, // 使用驼峰命名
"react/jsx-uses-react": 1, // 防止在 JSX 中使用的变量被错误的标记为未使用
"react/jsx-uses-vars": 1, // 防止 React 被错误的标记为未使用
"react/react-in-jsx-scope": 2, // 使用 JSX 时防止丢失 React
'no-tabs': 'off',
'indent': 'tab',
"react-hooks/rules-of-hooks": "error", // 检查 Hook 的规则
"react-hooks/exhaustive-deps": "warn" // 检查 effect 的依赖
},
"plugins": [
"react",
"react-hooks"
]
};