forked from vitest-dev/vitest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
41 lines (41 loc) · 870 Bytes
/
.eslintrc
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
{
"extends": "@antfu",
"rules": {
"no-only-tests/no-only-tests": "off",
// prefer global Buffer to not initialize the whole module
"n/prefer-global/buffer": "off",
"@typescript-eslint/no-invalid-this": "off",
"no-restricted-imports": [
"error",
{
"paths": ["path"]
}
],
"import/no-named-as-default": "off"
},
"overrides": [
{
"files": "packages/**/*.*",
"rules": {
"no-restricted-imports": [
"error",
{
"paths": ["vitest", "path"]
}
]
}
},
{
// these files define vitest as peer dependency
"files": "packages/{coverage-*,ui,browser,web-worker}/**/*.*",
"rules": {
"no-restricted-imports": [
"error",
{
"paths": ["path"]
}
]
}
}
]
}