-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.js
91 lines (91 loc) · 2.32 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
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 12,
sourceType: 'module',
},
plugins: ['react', 'import', 'react-hooks', '@typescript-eslint'],
extends: ['airbnb', 'plugin:@typescript-eslint/recommended'],
env: {
browser: true,
es2021: true,
node: true,
},
ignorePatterns: [
'*.config.js',
'.eslintrc.js',
'next-sitemap.js',
'server.js',
],
settings: {
'import/resolver': {
alias: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
map: [['@', '.']],
},
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
},
},
rules: {
'import/no-extraneous-dependencies': [
'error',
{ devDependencies: ['./*.ts'] },
],
'@typescript-eslint/no-require-imports': 'error',
"@typescript-eslint/no-shadow": "error",
"no-shadow": "off",
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
'react/no-unescaped-entities': 'off',
'@next/next/no-page-custom-font': 'off',
'react/prop-types': [0],
'react/jsx-filename-extension': [
1,
{ extensions: ['.js', '.jsx', '.ts', '.tsx'] },
],
'react/jsx-props-no-spreading': [0],
'arrow-body-style': 0,
'no-console': 0,
'max-len': 0,
'react/react-in-jsx-scope': 0,
'no-underscore-dangle': 0,
'no-nested-ternary': 0,
'no-else-return': 0,
'import/prefer-default-export': 0,
quotes: 0,
'comma-dangle': 0,
'object-curly-newline': 0,
'implicit-arrow-linebreak': 0,
'operator-linebreak': 0,
'function-paren-newline': 0,
'jsx-a11y/click-events-have-key-events': 0,
'jsx-a11y/control-has-associated-label': 0,
'jsx-a11y/no-noninteractive-element-interactions': 0,
'react/jsx-one-expression-per-line': 0,
'no-confusing-arrow': 0,
indent: 0,
'no-restricted-globals': 0,
'react/jsx-curly-newline': 0,
camelcase: 0,
'no-unused-vars': 0,
'react/function-component-definition': 0,
'react/jsx-no-useless-fragment': 0,
'react/no-unknown-property': 0,
'react/require-default-props': 0,
'no-unsafe-optional-chaining': 0,
'react/no-invalid-html-attribute': 0,
},
};