We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb25401 commit ba5af95Copy full SHA for ba5af95
rules.js
@@ -10,6 +10,8 @@ const jsRules = {
10
strict: ['error', 'global'],
11
12
'jsdoc/no-undefined-types': 'warn',
13
+ 'jsdoc/require-param-type': 'warn',
14
+ 'jsdoc/require-returns-type': 'warn',
15
},
16
};
17
@@ -28,6 +30,7 @@ const tsRules = {
28
30
plugins: ['@typescript-eslint'],
29
31
rules: {
32
'@typescript-eslint/no-floating-promises': 'off',
33
+ 'jsdoc/no-types': 'warn',
34
35
36
@@ -236,10 +239,8 @@ const baseRules = {
236
239
'jsdoc/require-param': 'warn',
237
240
'jsdoc/require-param-description': 'warn',
238
241
'jsdoc/require-param-name': 'warn',
- 'jsdoc/require-param-type': 'warn',
242
'jsdoc/require-returns-check': 'warn',
243
'jsdoc/require-returns-description': 'warn',
- 'jsdoc/require-returns-type': 'warn',
244
'jsdoc/valid-types': 'warn',
245
246
settings: {
0 commit comments