-
Notifications
You must be signed in to change notification settings - Fork 11
/
.eslintrc.js
85 lines (84 loc) · 1.95 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
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
node: true
},
parser: '@typescript-eslint/parser',
extends: [
'airbnb',
'prettier',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
'plugin:prettier/recommended'
],
parserOptions: {
ecmaVersion: 9,
ecmaFeatures: {
jsx: true
},
sourceType: 'module'
},
plugins: ['react', 'markdown'],
settings: {
react: {
version: 'detect'
},
'import/resolver': {
node: {
paths: ['src']
}
}
},
rules: {
'react/jsx-one-expression-per-line': 0,
'react/prop-types': 0,
'react/forbid-prop-types': 0,
'react/jsx-indent': 0,
'react/jsx-wrap-multilines': [
'error',
{ declaration: false, assignment: false }
],
'react/jsx-filename-extension': [
1,
{ extensions: ['.js', '.jsx', '.tsx', '.md'] }
],
'jsx-a11y/no-static-element-interactions': 0,
'jsx-a11y/anchor-has-content': 0,
'jsx-a11y/click-events-have-key-events': 0,
'jsx-a11y/anchor-is-valid': 0,
'comma-dangle': ['error', 'never'],
indent: [
'error',
2,
{
SwitchCase: 1,
ignoredNodes: ['JSXAttribute', 'JSXSpreadAttribute']
}
],
'react/jsx-first-prop-new-line': [1, 'multiline'],
'react/jsx-max-props-per-line': [
1,
{
maximum: 1
}
],
'react/jsx-indent': ['error', 2],
'react/jsx-indent-props': ['error', 'first'],
'@typescript-eslint/indent': [
'error',
2,
{
ignoredNodes: ['JSXAttribute', 'JSXSpreadAttribute']
}
],
'@typescript-eslint/no-explicit-any': ['off'],
'@typescript-eslint/explicit-function-return-type': ['off'],
'@typescript-eslint/explicit-member-accessibility': ['off'],
'import/no-unresolved': ['off'],
'no-underscore-dangle': ['off'],
'no-shadow': ['off']
}
};