-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc.js
97 lines (97 loc) · 3.23 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
module.exports = {
// 为我们提供运行环境,一个环境定义了一组预定义的全局变量
env: {
browser: true,
es6: true
},
// 一个配置文件可以被基础配置中的已启用的规则继承。
extends: ['airbnb', 'prettier', 'prettier/react'],
// 自定义全局变量
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
_: true,
$: true
},
// ESLint 默认使用Espree作为其解析器,你可以在配置文件中指定一个不同的解析器
// "parser": "@typescript-eslint/parser",
// 配置解析器支持的语法
parserOptions: {
ecmaFeatures: {
jsx: true
},
ecmaVersion: 2018,
sourceType: 'module'
},
// ESLint 支持使用第三方插件。在使用插件之前,你必须使用 npm 安装它。
// 在配置文件里配置插件时,可以使用 plugins 关键字来存放插件名字的列表。插件名称可以省略 eslint-plugin- 前缀。
plugins: ['prettier'],
// ESLint 附带有大量的规则。你可以使用注释或配置文件修改你项目中要使用的规则。要改变一个规则设置,你必须将规则 ID 设置为下列值之一:
// "off" 或 0 - 关闭规则
// "warn" 或 1 - 开启规则,使用警告级别的错误:warn (不会导致程序退出)
// "error" 或 2 - 开启规则,使用错误级别的错误:error (当被触发的时候,程序会退出)
rules: {
'no-debugger': 0,
'no-unused-vars': [
1,
{
argsIgnorePattern: 'res|next|^err'
}
],
'arrow-body-style': [2, 'as-needed'],
'no-param-reassign': [
2,
{
props: false
}
],
'no-console': 0,
'import/prefer-default-export': 0,
import: 0,
'func-names': 0,
'space-before-function-paren': 0,
'comma-dangle': 0,
'max-len': 0,
'import/extensions': 0,
'no-underscore-dangle': 0,
'consistent-return': 0,
'react/display-name': 1,
'react/react-in-jsx-scope': 0,
'react/prefer-stateless-function': 0,
'react/forbid-prop-types': 0,
'react/no-unescaped-entities': 0,
'jsx-a11y/accessible-emoji': 0,
'jsx-a11y/label-has-for': 0,
'react/jsx-filename-extension': [
1,
{
extensions: ['.js', '.jsx']
}
],
radix: 0,
semi: [2, 'always'],
'no-shadow': [
2,
{
hoist: 'all',
allow: ['resolve', 'reject', 'done', 'next', 'err', 'error']
}
],
'prettier/prettier': [
'error',
{
printWidth: 120, //一行的字符数,如果超过会进行换行,默认为80
tabWidth: 2, //一个tab代表几个空格数,默认为2
semi: true
}
],
'jsx-a11y/href-no-hash': 'off',
'jsx-a11y/alt-text': 'off',
'jsx-a11y/anchor-is-valid': [
'warn',
{
aspects: ['invalidHref']
}
]
}
};