-
-
Notifications
You must be signed in to change notification settings - Fork 300
/
Copy patheslint.config.mjs
97 lines (86 loc) · 1.99 KB
/
eslint.config.mjs
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
import { globalIgnores } from 'eslint/config';
import globals from 'globals';
import js from '@eslint/js';
import prettierRecommended from 'eslint-plugin-prettier/recommended';
import tseslint from 'typescript-eslint';
export default tseslint.config([
globalIgnores([
'benchmark/suites/',
'**/__fixtures__/',
'**/dist/',
'**/.nx/',
'**/coverage',
'**/node_modules',
]),
js.configs.recommended,
{
files: ['**/*.js', '**/*.mjs', '**/*.cjs', '**/*.ts', '**/*.tsx'],
languageOptions: {
globals: {
...globals.node,
},
ecmaVersion: 2022,
sourceType: 'module',
},
rules: {
'no-shadow': 'error',
'no-var': 'error',
'padding-line-between-statements': [
'error',
{
blankLine: 'always',
prev: '*',
next: 'return',
},
{
blankLine: 'always',
prev: ['const', 'let', 'var'],
next: '*',
},
{
blankLine: 'any',
prev: ['const', 'let', 'var'],
next: ['const', 'let', 'var'],
},
{
blankLine: 'never',
prev: ['import'],
next: ['import'],
},
],
'prefer-const': 'error',
},
},
{
files: ['**/*.cjs'],
languageOptions: {
ecmaVersion: 2022,
sourceType: 'script',
},
rules: {
strict: ['error', 'global'],
},
},
{
files: ['**/*.ts', '**/*.tsx'],
extends: [
tseslint.configs.recommended,
tseslint.configs.strict,
tseslint.configs.stylistic,
],
rules: {
'no-shadow': 'off',
'@typescript-eslint/no-shadow': 'error',
'@typescript-eslint/array-type': [
'error',
{
default: 'array-simple',
},
],
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/sort-type-constituents': 'error',
},
},
prettierRecommended,
]);