-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
80 lines (79 loc) · 2.06 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
import js from '@eslint/js'
import globals from 'globals'
import standard from 'eslint-config-standard'
import prettier from 'eslint-config-prettier'
import nodePlugin from 'eslint-plugin-n'
import promisePlugin from 'eslint-plugin-promise'
import importPlugin from 'eslint-plugin-import'
import jsdocPlugin from 'eslint-plugin-jsdoc'
import vitestPlugin from 'eslint-plugin-vitest'
import typescript from 'typescript-eslint'
export default [
js.configs.recommended,
...typescript.configs.recommended,
...typescript.configs.stylistic,
nodePlugin.configs['flat/recommended'],
promisePlugin.configs['flat/recommended'],
importPlugin.flatConfigs.recommended,
importPlugin.flatConfigs.typescript,
jsdocPlugin.configs['flat/recommended-typescript'],
{
name: 'custom',
files: ['**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx}'],
ignores: [],
languageOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
globals: {
...globals.es2025,
...globals.browser,
...globals.worker,
...globals.serviceworker,
...globals.node,
...globals.commonjs,
},
parser: typescript.parser,
parserOptions: {
ecmaFeatures: {
globalReturn: false,
impliedStrict: true,
jsx: true,
},
},
},
linterOptions: {
noInlineConfig: false,
reportUnusedDisableDirectives: 'warn',
},
plugins: {},
rules: {
...standard.rules,
'n/no-missing-import': 'off',
'n/no-missing-require': 'off',
},
settings: {
'import/resolver': {
typescript: {
alwaysTryTypes: true,
directory: 'tsconfig.json',
},
node: true,
},
},
},
{
name: 'custom-tests',
files: ['**/tests/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx}'],
settings: {
vitest: {
typecheck: true,
},
},
...vitestPlugin.configs.recommended,
},
{
name: 'custom-ignore',
ignores: ['node_modules/**', 'dist/**', '.{idea,fleet,vscode,git}/**', '*.config.*', '*.cache/**'],
},
prettier,
]