generated from shgysk8zer0/static-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
44 lines (44 loc) · 969 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
42
43
44
{
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2022
},
"plugins": ["frontmatter"],
"rules": {
"indent": [
2,
"tab",
{
"SwitchCase": 1
}
],
"quotes": [
2,
"single"
],
"semi": [
2,
"always"
],
"no-console": 0,
"no-prototype-builtins": 0,
"generator-star-spacing": ["error", {
"before": false,
"after": true,
"anonymous": "neither",
"method": {"before": true, "after": false}
}]
},
"globals": {
"launchQueue": "readonly",
"cookieStore": "readonly",
"showOpenFilePicker": "readonly",
"showSaveFilePicker": "readonly",
"scheduler": "readonly"
}
}