-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.cjs
101 lines (101 loc) · 2.77 KB
/
index.cjs
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
94
95
96
97
98
99
100
101
module.exports = {
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/strict-type-checked',
'plugin:@typescript-eslint/stylistic-type-checked',
'plugin:n/recommended',
'plugin:promise/recommended',
'prettier',
],
overrides: [
{
plugins: ['vitest'],
extends: ['plugin:vitest/recommended'],
files: ['packages/api/tests/*.test.ts'],
rules: {
'@typescript-eslint/naming-convention': 'off',
},
},
{
extends: ['plugin:jsdoc/recommended-typescript-error'],
files: ['packages/api/src/*.ts'],
rules: {
'jsdoc/require-jsdoc': [
'error',
{
require: {
ClassDeclaration: true,
FunctionDeclaration: true,
MethodDefinition: true,
},
},
],
},
},
],
rules: {
'@typescript-eslint/no-use-before-define': [
'error',
{
functions: false,
classes: false,
enums: false,
variables: false,
typedefs: false,
},
],
'@typescript-eslint/return-await': ['error', 'always'],
'@typescript-eslint/consistent-type-exports': [
'error',
{
fixMixedExportsWithInlineTypeSpecifier: true,
},
],
'@typescript-eslint/consistent-type-imports': [
'error',
{
prefer: 'type-imports',
disallowTypeAnnotations: true,
fixStyle: 'inline-type-imports',
},
],
'@typescript-eslint/explicit-function-return-type': [
'error',
{
allowExpressions: true,
allowHigherOrderFunctions: true,
allowTypedFunctionExpressions: true,
allowDirectConstAssertionInArrowFunctions: true,
},
],
'@typescript-eslint/method-signature-style': 'error',
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'variableLike',
leadingUnderscore: 'allow',
trailingUnderscore: 'allow',
format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
},
],
'@typescript-eslint/no-confusing-void-expression': [
'error',
{ ignoreArrowShorthand: false, ignoreVoidOperator: false },
],
'@typescript-eslint/prefer-readonly': 'error',
'@typescript-eslint/promise-function-async': 'error',
'@typescript-eslint/require-array-sort-compare': ['error', { ignoreStringArrays: true }],
'@typescript-eslint/strict-boolean-expressions': 'error',
'@typescript-eslint/no-import-type-side-effects': 'error',
'@typescript-eslint/restrict-template-expressions': 'off',
'n/no-missing-import': 'off',
'n/no-unsupported-features/node-builtins': [
'error',
{
ignores: ['fetch'],
},
],
'no-console': 'error',
},
reportUnusedDisableDirectives: true,
};