-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.common.js
108 lines (102 loc) · 3.3 KB
/
.eslintrc.common.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/**
* @param {string[]} tsConfigPath
*/
function configureEslint(tsConfigPath) {
return {
root: true,
env: {
node: true,
},
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'import',
'jsdoc',
'@stylistic/ts'
],
parserOptions: {
project: tsConfigPath,
},
extends: [
'eslint:recommended',
'plugin:jsdoc/recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:mocha/recommended',
'plugin:eslint-comments/recommended',
],
rules: {
'no-shadow': 'off',
'quotes': ['warn', 'single'],
'object-shorthand': 'error',
'no-console': 'error',
'no-warning-comments': 'warn',
'eslint-comments/no-unused-disable': 'error',
'eslint-comments/disable-enable-pair': ['error', { allowWholeFile: true }],
'@stylistic/ts/semi': ['error'],
'@stylistic/ts/member-delimiter-style': ['error'],
'@typescript-eslint/explicit-member-accessibility': ['error'],
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-unused-vars': ['warn', {
'argsIgnorePattern': '^_'
}],
'@typescript-eslint/naming-convention': [
'warn',
{
selector: 'variableLike',
format: ['camelCase'],
leadingUnderscore: 'allow',
},
{
selector: 'variable',
types: ['boolean'],
format: ['PascalCase'],
prefix: ['is', 'should', 'has', 'can', 'did', 'will'],
filter: { regex: '^(?!(cancelled|canceled)).*$', match: true },
leadingUnderscore: 'allow',
}
],
'@typescript-eslint/no-shadow': ['error', { builtinGlobals: true, ignoreTypeValueShadow: true, }],
'@typescript-eslint/ban-ts-comment': [
'error',
{
'ts-expect-error': 'allow-with-description',
'ts-ignore': 'allow-with-description',
'ts-nocheck': true,
'ts-check': false,
minimumDescriptionLength: 3,
}
],
'@typescript-eslint/unbound-method': ['error', { ignoreStatic: true }],
'@typescript-eslint/restrict-template-expressions': ['error', { allowNumber: true, allowBoolean: true }],
'@typescript-eslint/explicit-function-return-type': ['error'],
'jsdoc/require-jsdoc': [
'warn',
{
publicOnly: true,
require: {
ClassDeclaration: true,
},
checkConstructors: false,
checkGetters: false,
contexts: [
'MethodDefinition:not([accessibility="private"])'
]
}
],
'jsdoc/check-tag-names': ['warn', { definedTags: ['internal'] }],
'jsdoc/require-returns': 'off',
'jsdoc/require-param': 'off',
'mocha/no-setup-in-describe': 'off',
'mocha/no-hooks': 'warn',
'mocha/no-return-from-async': 'error',
'mocha/max-top-level-suites': 'off',
'mocha/no-exclusive-tests': 'error',
},
settings: {
jsdoc: { mode: 'typescript' }
}
};
}
module.exports.configureEslint = configureEslint;