-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 888 Bytes
/
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
{
"devDependencies": {
"@types/jest": "27.0.2",
"elm": "latest-0.19.1",
"elm-test": "latest-0.19.1",
"jest": "27.3.1",
"prettier": "2",
"xo": "0.38"
},
"xo": {
"envs": [
"browser",
"jest"
],
"prettier": true,
"space": true,
"ignores": [
"markdown/**",
"tests/sscce-tests/**",
"tests/vdom-tests/**",
"test/**"
],
"rules": {
"camelcase": "off",
"unicorn/filename-case": "off",
"unicorn/no-abusive-eslint-disable": "warn",
"new-cap": "off",
"capitalized-comments": "off",
"no-new-object": "off",
"no-undef": [
"error",
{
"typeof": false
}
]
},
"globals": [
"F2",
"F3",
"F4",
"F5",
"F6",
"F7",
"F8",
"F9",
"A2",
"A3",
"A4"
]
},
"prettier": {
"printWidth": 100,
"useTabs": false,
"trailingComma": "es5",
"singleQuote": false,
"bracketSpacing": true
}
}