forked from mazipan/tanyaaja.in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
116 lines (114 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
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'next',
'next/core-web-vitals',
'plugin:@typescript-eslint/recommended',
'prettier',
'plugin:prettier/recommended',
],
plugins: [
'@typescript-eslint/eslint-plugin',
'simple-import-sort',
'unused-imports',
'prettier',
],
env: {
es6: true,
browser: true,
jest: true,
node: true,
},
settings: {
react: {
version: 'detect',
},
},
rules: {
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@next/next/no-img-element': 'off',
'no-param-reassign': 'off',
'jsx-a11y/no-autofocus': 'off',
'react/forbid-prop-types': 'off',
'import/prefer-default-export': 'off',
'no-underscore-dangle': 'off',
'no-shadow': 'off',
'no-plusplus': 'off',
'spaced-comment': 'off',
'guard-for-in': 'off',
'react/no-danger': 'off',
'react/button-has-type': 'off',
'react/no-unescaped-entities': 'off',
'operator-assignment': 'off',
'prefer-destructuring': 'off',
'react/no-children-prop': 'off',
'consistent-return': 'off',
'react/state-in-constructor': 'off',
'no-restricted-syntax': 'off',
'no-continue': 'off',
'react/destructuring-assignment': 'off',
'@typescript-eslint/dot-notation': 'off',
'no-bitwise': 'off',
'no-redeclare': 'off',
'@typescript-eslint/naming-convention': 'off',
'import/no-extraneous-dependencies': 'off',
'@typescript-eslint/lines-between-class-members': 'off',
'no-alert': 'off',
'react/jsx-filename-extension': ['error', { extensions: ['.js', '.tsx'] }],
'react/jsx-props-no-spreading': 'off',
'react/no-array-index-key': 'off',
'react/require-default-props': 'off',
'react/sort-prop-types': 'error',
'react/prop-types': 'off',
'@typescript-eslint/no-shadow': 'off',
'react-hooks/exhaustive-deps': 'error',
'import/no-named-as-default': 'off',
'prefer-object-spread': 'off',
'arrow-body-style': 'off',
'no-console': [
2,
{
allow: ['warn', 'error'],
},
],
// Unused Import
'@typescript-eslint/no-unused-vars': 'off',
'unused-imports/no-unused-imports': 'warn',
'unused-imports/no-unused-vars': [
'warn',
{
vars: 'all',
varsIgnorePattern: '^_',
args: 'after-used',
argsIgnorePattern: '^_',
},
],
// /end Unused Import
// Import Sort
'simple-import-sort/exports': 'warn',
'simple-import-sort/imports': [
'warn',
{
groups: [
// Side effect imports.
['^\\u0000'],
['^node:', '^react', '^next', '^@radix'],
// Packages.
// Things that start with a letter (or digit or underscore), or `@` followed by a letter.
['^@?\\w'],
['^~?\\w'],
// Absolute imports and other imports such as Vue-style `@/foo`.
// Anything not matched in another group.
['^'],
// Relative imports.
// Anything that starts with a dot.
['^\\.'],
['^.+\\.s?css$'],
],
},
],
// /end Import Sort
},
}