-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
.eslintrc
34 lines (34 loc) · 799 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
{
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2021
},
"plugins": ["svelte3", "@typescript-eslint"],
"rules": {
"arrow-parens": ["warn", "as-needed"],
"@typescript-eslint/no-empty-function": "off",
"no-async-promise-executor": "off",
"prefer-const": "warn",
"no-debugger": "off",
"no-constant-condition": "off",
"semi": "warn",
"quotes": ["warn", "double", { "allowTemplateLiterals": true }]
},
"overrides": [
{
"files": ["*.svelte"],
"processor": "svelte3/svelte3"
}
],
"env": {
"es6": true,
"browser": true,
"node": true,
"webextensions": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
]
}