forked from woow-wu7/7-react-admin-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
58 lines (57 loc) · 2 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* eslint-disable */
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'react-app',
'plugin:@typescript-eslint/recommended',
// "plugin:prettier/recommended" 暂不开启
],
plugins: ['@typescript-eslint', 'react'],
rules: {
'no-console': 0,
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/no-explicit-any': 0,
'no-use-before-define': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'react-hooks/exhaustive-deps': 0,
'jsx-a11y/anchor-is-valid': 0,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/member-delimiter-style': 0,
'@typescript-eslint/no-var-requires': 0
},
// "extends": ["react-app"],
// "env": {
// "es6": true, // 在开发环境,启用es6语法,包括全局变量
// "node": true,
// "browser": true
// },
// "parser": "babel-eslint", // 解析器
// "parserOptions": { // 解析器选项
// "ecmaVersion": 6, // 启用es6语法,不包括全局变量
// "sourceType": "module",
// "ecmaFeatures": { //额外的语言特性
// "jsx": true // 启用jsx语法
// }
// },
// "plugins": [
// // ...
// "react-hooks",
// "prettier",
// ],
// rules: {
// "prettier/prettier": "error", // 用于 prettier
// 'no-console': 'off', // 可以console
// 'no-debugger': 'off',
// "react-hooks/rules-of-hooks": "error",
// "react-hooks/exhaustive-deps": "warn",
// // "tabWidth": 2, // tab缩进大小,默认为2
// // "no-unused-vars": 2, //禁止出现未使用过的变量
// // "no-redeclare": 2, //禁止多次声明同一变量
// // 'no-use-before-define': 2, //禁止在变量定义之前使用它们
// // "indent": [2, 2], // 控制缩进为2
// // "no-debugger": 1, //警告debugger
// // "semi-spacing": [2, {"before": false, "after": true}], // 强制分号前后不允许空格
// // "no-const-assign": 2, //禁止修改const声明的变量
// },
}
/* eslint-disable */