-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.xo-config.js
More file actions
32 lines (32 loc) · 838 Bytes
/
.xo-config.js
File metadata and controls
32 lines (32 loc) · 838 Bytes
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
module.exports = {
prettier: true,
space: true,
extends: ['xo-lass'],
env: ['node', 'browser'],
ignore: ['config.js'],
rules: {
'n/prefer-global/process': 'off',
'prefer-object-spread': 'off',
'unicorn/prefer-includes': 'off',
'logical-assignment-operators': 'off'
},
overrides: [
{
files: ['**/*.d.ts'],
rules: {
'no-unused-vars': 'off',
'@typescript-eslint/naming-convention': 'off',
'no-redeclare': 'off',
'@typescript-eslint/no-redeclare': 'off'
}
},
{
files: ['**/*.test-d.ts'],
rules: {
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-confusing-void-expression': 'off', // Conflicts with `expectError` assertion.
'@typescript-eslint/no-unsafe-assignment': 'off'
}
}
]
};