-
Notifications
You must be signed in to change notification settings - Fork 59
/
.eslintrc
34 lines (34 loc) · 839 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
{
"extends": [
"eslint:recommended",
"plugin:node/recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": ["import"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2021
},
"globals": {
"module": true
},
"rules": {
"node/no-missing-import": [0],
"no-process-exit": 0,
"node/no-unsupported-features/es-syntax": 0,
"node/no-unpublished-import": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/ban-ts-comment": 0,
"node/no-extraneous-import": [
1,
{
"allowModules": ["vite", "vitest"]
}
],
"prefer-const": 0,
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-non-null-assertion": "off"
}
}