forked from SchedulePickerHQ/SchedulePicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.xo-config.js
29 lines (29 loc) · 993 Bytes
/
.xo-config.js
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
module.exports = {
space: 4,
prettier: true,
rules: {
'import/extensions': [
'error',
'ignorePackages',
{
'js': 'never',
'ts': 'never',
},
],
'unicorn/prevent-abbreviations': 'off',
'unicorn/prefer-module': 'off',
'capitalized-comments': 'off',
'no-alert': 'off',
'no-warning-comments': 'off',
'unicorn/no-array-reduce': 'off',
'node/prefer-global/process': 'off',
'n/prefer-global/process': 'off',
'@typescript-eslint/naming-convention': 'off',
'@typescript-eslint/padding-line-between-statements': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-throw-literal': 'off',
},
};