-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
64 lines (64 loc) · 1.43 KB
/
package.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ms-dark-theme",
"version": "0.1.2",
"private": true,
"scripts": {
"test": "xo"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-plugin-promise": "^6.0.0",
"webpack": "^5.38.1",
"xo": "^0.50.0"
},
"xo": {
"space": true,
"envs": [
"browser",
"jquery"
],
"rules": {
"quotes": [
"warn",
"double",
{
"avoidEscape": true
}
],
"camelcase": 1,
"brace-style": 0,
"no-prototype-builtins": 0,
"dot-notation": 0,
"linebreak-style": "off",
"comma-dangle": "off",
"no-eq-null": "off",
"eqeqeq": [
"error",
"smart"
],
"unicorn/filename-case": "off",
"no-var": 0,
"object-shorthand": 0,
"unicorn/prefer-node-append": 0,
"unicorn/no-for-loop": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/no-array-for-each": 0,
"unicorn/no-array-reduce": 0,
"unicorn/no-empty-file": 0,
"unicorn/no-instanceof-array": 0,
"unicorn/no-this-assignment": 0,
"unicorn/numeric-separators-style": 0,
"unicorn/prefer-date-now": 0,
"unicorn/prefer-dom-node-append": 0,
"unicorn/prefer-dom-node-remove": 0,
"unicorn/prefer-module": 0,
"unicorn/prefer-optional-catch-binding": 0,
"unicorn/prefer-ternary": 0
},
"globals": [
"CHAT",
"Notifier",
"StackExchange"
]
}
}