-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
41 lines (39 loc) · 966 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
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'react',
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
],
env: {
browser: true,
node: true,
es2020: true
},
ecmaFeatures: {
jsx: true
},
rules: {
semi: 0,
"space-before-blocks": [1, { "functions": "always", "keywords": "always" }],
//typescript
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/member-delimiter-style": [1, {
multiline: {
delimiter: 'none',
requireLast: false
}
}],
"@typescript-eslint/interface-name-prefix": [1, { "prefixWithI": "always" }],
"space-before-function-paren": 0,
"@typescript-eslint/space-before-function-paren": [1, "never"],
//react
"react/prop-types": 0,
}
};