-
Notifications
You must be signed in to change notification settings - Fork 21
/
.xo-config
73 lines (73 loc) · 1.48 KB
/
.xo-config
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
66
67
68
69
70
71
72
73
{
"space": true,
"ignores": [
"bin",
"dist",
"test-helpers",
"*.d.ts"
],
"prettier": true,
"plugins": [
"jest"
],
"envs": [
"jest"
],
"rules": {
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
],
"object-curly-spacing": "off",
"curly": [
"error",
"multi-line"
],
"comma-dangle": "off",
"ava/no-skip-test": "off",
"linebreak-style": "off",
"operator-linebreak": [
"error",
"after",
{
"overrides": {
"?": "ignore",
":": "ignore"
}
}
],
"valid-jsdoc": [
"warn",
{
"requireParamDescription": false,
"requireReturn": false
}
],
"import/extensions": "off",
"unicorn/no-array-reduce": "off",
"unicorn/no-array-callback-reference": "off",
"unicorn/prefer-module": 0,
"unicorn/no-process-exit": 0,
"unicorn/prevent-abbreviations": "off",
"node/prefer-global/process": 0,
"n/prefer-global/process": 0,
"n/file-extension-in-import": 0,
"object-shorthand": 0,
"arrow-body-style": 0,
"capitalized-comments": 0,
"ava/no-ignored-test-files": [
"error",
{
"files": [
"**/*.spec.*"
]
}
],
"@typescript-eslint/object-curly-spacing": "off",
"@typescript-eslint/comma-dangle": "off",
"@typescript-eslint/prefer-nullish-coalescing": 0,
"@typescript-eslint/parameter-properties": "off"
}
}