forked from pi-hole/web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.45 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
65
{
"name": "AdminLTE",
"version": "1.0.0",
"private": true,
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/pi-hole/AdminLTE.git"
},
"keywords": [],
"author": "",
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/pi-hole/AdminLTE/issues"
},
"homepage": "https://github.com/pi-hole/AdminLTE#readme",
"scripts": {
"xo": "xo",
"xo:fix": "npm run xo -- --fix",
"test": "npm run xo"
},
"devDependencies": {
"xo": "^0.25.3"
},
"prettier": {
"bracketSpacing": true,
"printWidth": 100,
"singleQuote": false,
"trailingComma": "none"
},
"xo": {
"space": 2,
"envs": [
"browser",
"jquery"
],
"parserOptions": {
"ecmaVersion": 3,
"sourceType": "script"
},
"esnext": false,
"prettier": true,
"ignores": [
"**/vendor/**"
],
"rules": {
"camelcase": "off",
"capitalized-comments": "off",
"new-cap": "off",
"no-alert": "off",
"no-negated-condition": "off",
"one-var": "off",
"radix": "off",
"spaced-comment": "off",
"unicorn/explicit-length-check": "off",
"unicorn/filename-case": "off",
"unicorn/no-for-loop": "off",
"unicorn/no-zero-fractions": "off",
"unicorn/prefer-includes": "off",
"unicorn/prefer-node-append": "off",
"unicorn/prefer-query-selector": "off",
"unicorn/prefer-string-slice": "off"
}
}
}