This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
93 lines (93 loc) · 3.46 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'unicorn'],
extends: ['plugin:@typescript-eslint/recommended'],
rules: {
'array-bracket-spacing': ['error', 'never'],
'arrow-parens': ['error', 'always'],
'block-spacing': ['error', 'always'],
'brace-style': 'off',
'comma-spacing': 'off',
'eol-last': ['error', 'always'],
'indent': ['error', 4, {
'SwitchCase': 1,
}],
'jsx-quotes': ['error', 'prefer-double'],
'keyword-spacing': 'off',
'object-curly-spacing': ['error', 'never'],
'no-cond-assign': 'error',
'no-multi-spaces': 'error',
'no-redeclare': 'off',
'no-trailing-spaces': 'error',
'no-whitespace-before-property': 'error',
'semi': 'off',
'space-before-function-paren': ['error', {
anonymous: 'always',
asyncArrow: 'always',
named: 'never',
}],
'space-in-parens': ['error', 'never'],
'space-infix-ops': 'error',
'spaced-comment': ['error', 'always', {exceptions: ['-']}],
'quotes': 'off',
'@typescript-eslint/array-type': ['error', {
default: 'array-simple',
}],
'yoda': ['error', 'never'],
'@typescript-eslint/brace-style': 'error',
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/comma-spacing': ['error', {
before: false,
after: true,
}],
'@typescript-eslint/consistent-type-assertions': 'error',
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/func-call-spacing': ['error', 'never'],
'@typescript-eslint/keyword-spacing': ['error', {
after: true,
before: true,
}],
'@typescript-eslint/member-delimiter-style': 'error',
'@typescript-eslint/no-duplicate-imports': 'error',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-redeclare': 'error',
'@typescript-eslint/no-object-literal-type-assertion': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/semi': ['error', 'always'],
'@typescript-eslint/quotes': ['error', 'single', {
allowTemplateLiterals: true,
avoidEscape: true,
}],
'unicorn/better-regex': 'error',
'unicorn/catch-error-name': ['error', {
name: 'err',
}],
'unicorn/consistent-destructuring': 'error',
'unicorn/consistent-function-scoping': 'error',
'unicorn/escape-case': 'error',
'unicorn/no-array-push-push': 'error',
'unicorn/no-lonely-if': 'error',
'unicorn/no-new-array': 'error',
'unicorn/no-zero-fractions': 'error',
'unicorn/number-literal-case': 'error',
'unicorn/prefer-ternary': 'error',
},
overrides: [
{
files: ['**/*.js'],
rules: {
'@typescript-eslint/no-var-requires': 'off'
}
},
// Regexp-Tree doesn't like the insane regexp :(
{
files: ['src/regexp-top-level-domain.ts'],
rules: {
'unicorn/better-regex': 'off'
}
}
],
};