-
Notifications
You must be signed in to change notification settings - Fork 19
/
.eslintrc.cjs
85 lines (85 loc) · 2.27 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
module.exports = {
root: true,
env: { browser: true, es2020: true },
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: [
'./tsconfig.json',
'./tsconfig.node.json',
'./tests/tsconfig.json',
],
tsconfigRootDir: __dirname,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/strict-type-checked',
'plugin:@typescript-eslint/stylistic-type-checked',
'plugin:import/recommended',
'plugin:import/typescript',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
ignorePatterns: [
'coverage',
'dist',
'libauth',
'playwright-report*',
'.eslintrc.cjs',
],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'import', 'react-refresh'],
settings: {
react: { version: 'detect' },
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
},
reportUnusedDisableDirectives: true,
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
'@typescript-eslint/consistent-indexed-object-style': [
'error',
'index-signature',
],
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/consistent-type-definitions': ['error', 'type'],
'import/no-unresolved': 'error',
'import/first': 'error',
'import/newline-after-import': 'error',
'import/no-absolute-path': 'error',
'import/no-amd': 'error',
'import/no-cycle': 'error',
'import/no-default-export': 'error',
'import/no-mutable-exports': 'error',
'import/no-named-default': 'error',
'import/no-commonjs': 'error',
'import/no-named-export': 'off',
'import/no-self-import': 'error',
'import/no-useless-path-segments': 'error',
'import/order': [
'error',
{
'newlines-between': 'always',
alphabetize: {
order: 'asc',
},
},
],
'no-duplicate-imports': 'off',
'import/no-duplicates': 'error',
'sort-imports': [
'error',
{
ignoreDeclarationSort: true,
ignoreCase: true,
},
],
'import/prefer-default-export': 'off',
},
};