-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
54 lines (54 loc) · 1.21 KB
/
.eslintrc.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
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
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'@antfu/eslint-config',
],
plugins: [],
rules: {
'import/no-anonymous-default-export': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],
'@typescript-eslint/brace-style': 'off',
'@typescript-eslint/consistent-type-imports': 'warn',
'@typescript-eslint/space-before-function-paren': 'off',
'@typescript-eslint/array-type': [
'error',
{
default: 'array',
},
],
'object-property-newline': ['error', { allowAllPropertiesOnSameLine: true }],
'comma-dangle': ['error', 'always-multiline'],
'camelcase': 'off',
'import/named': 'off',
'no-useless-constructor': 'off',
'no-control-regex': 'off',
'no-console': 'warn',
'arrow-parens': ['error', 'always'],
'brace-style': [
'error',
'1tbs',
],
'curly': [
'error',
'all',
],
'space-before-function-paren': [
'error',
{
anonymous: 'never',
named: 'never',
asyncArrow: 'always',
},
],
},
}