forked from couchbase/couchnode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
110 lines (101 loc) · 3.06 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/**
* Defines the AST nodes we expect to have documentation for. It includes
* most publicly defined stuff with the following exceptions:
* - No need for descriptions on Options interfaces.
* - No need to document setters.
* - No need to document protected or private.
* - No need to document inline types in function parameters.
*/
const needsDocsContexts = [
'TSInterfaceDeclaration[id.name!=/.*Options/]',
'TSTypeAliasDeclaration',
'TSEnumDeclaration',
'TSEnumMember',
'TSMethodSignature[accessibility!=/(private|protected)/]',
'ClassBody > TSPropertySignature[accessibility!=/(private|protected)/]',
'TSInterfaceBody > TSPropertySignature[accessibility!=/(private|protected)/]',
'FunctionDeclaration',
'ClassDeclaration',
'MethodDefinition[accessibility!=/(private|protected)/][kind!=/(set|constructor)/]',
'ClassBody > ClassProperty[accessibility!=/(private|protected)/]',
]
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:node/recommended',
'plugin:mocha/recommended',
'plugin:jsdoc/recommended',
'prettier',
],
settings: {
jsdoc: {
ignorePrivate: true,
ignoreInternal: true,
},
},
rules: {
// We intentionally use `any` in a few places for user values.
'@typescript-eslint/explicit-module-boundary-types': [
'error',
{
allowArgumentsExplicitlyTypedAsAny: true,
},
],
// We use the typescript compiler to transpile import statements into
// require statements, so this isn't actually valid
'node/no-unsupported-features/es-syntax': [
'error',
{
ignores: ['modules'],
},
],
// Reconfigure the checker to include ts files.
'node/no-missing-import': [
'error',
{
tryExtensions: ['.js', '.ts'],
},
],
'node/no-missing-require': [
'error',
{
tryExtensions: ['.js', '.ts'],
},
],
// Add the category and internal tags that we use.
'jsdoc/check-tag-names': [
'warn',
{
definedTags: ['category', 'internal'],
},
],
// Reconfigure jsdoc to require doc blocks for anything which we do
// not have marked as private or protected.
'jsdoc/require-jsdoc': [
'warn',
{
contexts: needsDocsContexts,
},
],
// Reconfigure jsdoc to require descriptions for all doc blocks. This is
// really an extension of the above requirement.
'jsdoc/require-description': [
'warn',
{
contexts: needsDocsContexts,
},
],
'jsdoc/require-description-complete-sentence': 'warn',
// We get type information from typescript.
'jsdoc/require-returns': 'off',
'jsdoc/require-param-type': 'off',
// We intentionally use `any` in a few places for user values.
'@typescript-eslint/no-explicit-any': 'off',
// There are a number of places we need to do this for code clarity,
// especially around handling backwards-compatibility.
'prefer-rest-params': 'off',
},
}