-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.config.js
131 lines (116 loc) · 3.21 KB
/
eslint.config.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
128
129
130
131
const importPlugin = require('eslint-plugin-import');
const eslint = require('@eslint/js');
const { FlatCompat } = require('@eslint/eslintrc');
const { fixupConfigRules } = require('@eslint/compat');
const tseslint = require('typescript-eslint');
const globals = require('globals');
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: eslint.configs.recommended,
allConfig: eslint.configs.all,
});
module.exports = [
eslint.configs.recommended,
...tseslint.configs.recommended,
...tseslint.configs.stylisticTypeChecked,
importPlugin.flatConfigs.recommended,
...fixupConfigRules(
compat.extends('plugin:prettier/recommended', 'prettier'),
),
{
ignores: ['**/dist'],
},
{
files: ['**/*.{ts,js,mjs}'],
languageOptions: {
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
NodeJS: true,
jest: true,
...globals.browser,
...globals.node,
},
parser: tseslint.parser,
ecmaVersion: 6,
sourceType: 'script',
parserOptions: {
project: './tsconfig.json',
projectService: true,
tsconfigRootDir: __dirname,
},
},
settings: {
'import/resolver': {
typescript: {},
},
},
rules: {
'no-redeclare': 'off',
'@typescript-eslint/no-redeclare': 'off',
'@typescript-eslint/no-empty-object-type': [
'error',
{ allowInterfaces: 'with-single-extends' },
],
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: ['**/*.test.ts', '**/*.spec.ts', 'eslint.config.js'],
},
],
'import/no-unresolved': 'error',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'import/order': [
'error',
{
groups: [
'builtin',
// Built-in imports (come from NodeJS native) go first
'external',
// <- External imports
'internal',
// <- Absolute imports
['sibling', 'parent'],
// <- Relative imports, the sibling and parent types they can be mingled together
'index',
// <- index imports
'unknown',
// <- unknown
],
'newlines-between': 'always',
alphabetize: {
/* sort in ascending order. Options: ["ignore", "asc", "desc"] */
order: 'asc',
/* ignore case. Options: [true, false] */
caseInsensitive: true,
},
},
],
// 'unicorn/prefer-ternary': ['error', 'only-single-line'],
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '_next',
},
],
'@typescript-eslint/no-require-imports': 'off',
'no-await-in-loop': 0,
'no-param-reassign': [
'error',
{
props: false,
},
],
'no-restricted-syntax': [
'error',
'ForInStatement',
'LabeledStatement',
'WithStatement',
],
'import/prefer-default-export': 0,
'class-methods-use-this': 0,
'import/default': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
},
},
];