-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
68 lines (68 loc) · 1.82 KB
/
.eslintrc.cjs
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
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
'plugin:prettier/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs', '.eslintrc.js'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh', 'prettier', 'import', 'simple-import-sort'],
rules: {
'react-refresh/only-export-components': [
'off',
{ allowConstantExport: true },
],
quotes: ['error', 'single'],
'import/no-unresolved': 0,
semi: ['error', 'never'],
'prettier/prettier': [
1,
{
singleQuote: true,
semi: false,
},
],
'object-curly-spacing': ['error', 'always'],
'require-jsdoc': 0,
'valid-jsdoc': ['warn'],
'simple-import-sort/imports': 'error',
'simple-import-sort/exports': 'error',
'import/first': 'error',
'import/newline-after-import': 'error',
'import/no-duplicates': 'error',
'no-empty-function': 'off',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'warn',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/ban-types': [
'warn',
{
types: {
'{}': false,
},
extendDefaults: true,
},
],
'max-len': [
'error',
{
code: 120,
ignoreComments: true,
ignoreUrls: true,
ignoreStrings: true,
ignoreRegExpLiterals: true,
},
],
'padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: '*', next: 'return' },
{ blankLine: 'always', prev: '*', next: 'if' },
],
'no-empty': ['error', { allowEmptyCatch: true }],
'prefer-promise-reject-errors': 'off',
},
}