-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.mjs
47 lines (46 loc) · 997 Bytes
/
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
/**
* @file ESLint Configuration - Root
* @module config/eslint
* @see https://eslint.org/docs/user-guide/configuring
*/
/**
* Root eslint configuration object.
*
* @type {import('eslint').Linter.Config[]}
*/
export default [
...(await import('./eslint.base.config.mjs')).default,
{
ignores: [
'!**/__fixtures__/**/dist/',
'!**/__fixtures__/node_modules/',
'!**/typings/**/dist/',
'**/*config.*.timestamp*',
'**/.vitest-reports/',
'**/.yarn/',
'**/CHANGELOG.md',
'**/LICENSE.md',
'**/RELEASE_NOTES.md',
'**/__fixtures__/**empty.json',
'**/__tests__/reports/',
'**/coverage/',
'**/dist/',
'**/tsconfig*temp.json'
]
},
{
plugins: {
unicorn: (await import('eslint-plugin-unicorn')).default
},
rules: {
'unicorn/import-style': [
2,
{
styles: {
'node:path': { default: true, named: true }
}
}
]
}
}
]