-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
127 lines (123 loc) · 3.2 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
module.exports = {
env: {
browser: true,
es2021: true,
"node": 1
},
extends: [
'plugin:react/recommended',
'airbnb',
'next', 'next/core-web-vitals', 'prettier'
],
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 12,
sourceType: 'module',
},
plugins: [
'react',
],
rules: {
"jsx-quotes": "off",
"quotes": [2, "double", { "avoidEscape": true }],
"quotes": [2, "single", { "avoidEscape": true }],
'react/no-unescaped-entities': 0,
'eslintreact/no-danger': 0,
'react/jsx-max-props-per-line': 0,
'react/jsx-first-prop-new-line': 0,
'no-console': 0,
'jsx-a11y/label-has-associated-control': 0,
'no-nested-ternary': 0,
'consistent-return': 0,
'no-alert': 0,
'react/jsx-no-constructed-context-values': 0,
'import/extensions': 0,
'react/prop-types': 0,
'linebreak-style': 0,
'react/state-in-constructor': 0,
'import/prefer-default-export': 0,
'react/react-in-jsx-scope': 'off',
// Rules for pages/index.js
'react/jsx-tag-spacing': ['error', { beforeSelfClosing: 'always' }],
'react/jsx-indent': ['error', 2],
'no-trailing-spaces': 'error',
// Rules for components/CustomTexts.jsx
'import/newline-after-import': ['error', { count: 1 }],
'arrow-body-style': ['error', 'as-needed'],
// Rules for components/ExploreCard.jsx
'import/newline-after-import': ['error', { count: 1 }],
'lines-around-directive': ['error', 'always'],
'import/newline-after-import': ['error', { count: 1 }],
// Rules for components/Footer.jsx
'react/jsx-indent': ['error', 2],
'react/jsx-indent-props': ['error', 2],
'react/jsx-tag-spacing': ['error', { beforeSelfClosing: 'always' }],
'react/jsx-closing-bracket-location': ['error', 'line-aligned'],
'no-trailing-spaces': 'error',
// Rules for components/InsightCard.jsx
quotes: ['error', 'single'],
'react/jsx-props-no-spreading': 'off',
'jsx-a11y/no-noninteractive-element-interactions': 'off',
'react/function-component-definition': [
2,
{
namedComponents: 'arrow-function',
unnamedComponents: 'arrow-function',
},
],
'max-len': [
2,
1050,
],
'no-multiple-empty-lines': [
'error',
{
max: 1,
maxEOF: 1,
},
],
'no-underscore-dangle': [
'error',
{
allow: [
'_d',
'_dh',
'_h',
'_id',
'_m',
'_n',
'_t',
'_text',
],
},
],
'object-curly-newline': 0,
'react/jsx-filename-extension': 0,
'react/jsx-one-expression-per-line': 0,
'jsx-a11y/click-events-have-key-events': 0,
'jsx-a11y/alt-text': 0,
'jsx-a11y/no-autofocus': 0,
'jsx-a11y/no-static-element-interactions': 0,
'react/no-array-index-key': 0,
'jsx-a11y/anchor-is-valid': [
'error',
{
components: [
'Link',
],
specialLink: [
'to',
'hrefLeft',
'hrefRight',
],
aspects: [
'noHref',
'invalidHref',
'preferButton',
],
},
],
},
};