-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
44 lines (44 loc) · 998 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module.exports = {
env: {
browser: true,
es6: true
},
extends: [
'standard',
"plugin:react/recommended"
],
parser: '@typescript-eslint/parser',
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaFeatures: {
jsx: true
},
ecmaVersion: 2018,
sourceType: 'module'
},
plugins: [
'react',
'prettier',
'@typescript-eslint'
],
rules: {
semi: ["error", "always"], //语句必须用;
"space-before-function-paren": 0,
"no-unused-vars": 1,
"react/prop-types": [0, { ignore: ['className', 'style', 'children'] }], //定义是否检测propTypes
"no-return-assign": 0,
"react/display-name": 0,
"prettier/prettier": ["error", {
singleQuote: true,
jsxSingleQuote: true,
endOfLine: 'auto',
trailingComma: 'none',
arrowParens: 'avoid'
}],
eqeqeq: 0,
"no-use-before-define": "off", //'React' was used before it was defined
}
}