-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreact.js
59 lines (59 loc) · 1.36 KB
/
react.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
module.exports = {
extends: [
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'./default',
],
env: {
es6: true,
browser: true,
},
plugins: [
'react',
],
rules: {
'jsx-quotes': [
'error',
'prefer-single',
],
'react/jsx-closing-bracket-location': ['error'],
'react/jsx-closing-tag-location': 'error',
'react/jsx-equals-spacing': ['error', 'never'],
'react/jsx-tag-spacing': ['error', {
closingSlash: 'never',
beforeSelfClosing: 'always',
afterOpening: 'never',
beforeClosing: 'never',
}],
'react/jsx-indent': ['error', 2],
'react/jsx-indent-props': ['error', 2],
'react/jsx-wrap-multilines': ['error', {
declaration: 'parens-new-line',
assignment: 'parens-new-line',
return: 'parens-new-line',
arrow: 'parens-new-line',
condition: 'ignore',
logical: 'ignore',
prop: 'ignore',
}],
'react/jsx-max-props-per-line': ['error', {
maximum: 1,
when: 'multiline',
}],
'react/self-closing-comp': 'error',
'react/prop-types': 'off',
},
settings: {
'react': {
version: 'detect',
},
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx", ".js", ".jsx"]
},
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
};