-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
41 lines (41 loc) · 921 Bytes
/
.eslintrc.json
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": [
"plugin:@typescript-eslint/recommended",
"plugin:svelte/recommended"
],
"plugins": [
"@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"extraFileExtensions": [
".svelte"
]
},
"overrides": [
{
"files": [
"*.svelte"
],
"parser": "svelte-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
}
],
"root": true,
"env": {
"node": true
},
"rules": {
"semi": 0,
"no-underscore-dangle": 0,
"import/prefer-default-export": 0,
"@typescript-eslint/no-explicit-any": "off",
"prefer-rest-params": "off"
},
"ignorePatterns": [
"**/node_modules/**"
]
}