Skip to content

Commit 4df57a8

Browse files
committedMay 13, 2020
feat(require-param): add checkDestructured option; fixes #530
1 parent 82fb8c9 commit 4df57a8

File tree

2 files changed

+87
-27
lines changed

2 files changed

+87
-27
lines changed
 

‎src/rules/requireParam.js

+37-27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import _ from 'lodash';
12
import iterateJsdoc from '../iterateJsdoc';
23

34
type T = [string, () => T];
@@ -47,11 +48,14 @@ export default iterateJsdoc(({
4748
}
4849

4950
const {
51+
autoIncrementBase = 0,
52+
checkRestProperty = false,
53+
checkDestructured = true,
54+
checkTypesPattern = '/^(?:[oO]bject|[aA]rray|PlainObject|Generic(?:Object|Array))$/',
5055
enableFixer = true,
5156
enableRootFixer = true,
52-
checkRestProperty = false,
5357
enableRestElementFixer = true,
54-
checkTypesPattern = '/^(?:[oO]bject|[aA]rray|PlainObject|Generic(?:Object|Array))$/',
58+
unnamedRootBase = ['root'],
5559
} = context.options[0] || {};
5660

5761
const lastSlashPos = checkTypesPattern.lastIndexOf('/');
@@ -93,10 +97,6 @@ export default iterateJsdoc(({
9397
return paramTags.length;
9498
};
9599

96-
const {
97-
autoIncrementBase = 0,
98-
unnamedRootBase = ['root'],
99-
} = context.options[0] || {};
100100
let [nextRootName, incremented, namer] = rootNamer([...unnamedRootBase], autoIncrementBase);
101101

102102
functionParameterNames.forEach((functionParameterName, functionParameterIdx) => {
@@ -125,32 +125,39 @@ export default iterateJsdoc(({
125125
}
126126

127127
names.forEach((paramName, idx) => {
128-
if (jsdocParameterNames && !jsdocParameterNames.find(({name}) => {
128+
// Add root if the root name is not in the docs (and is not already
129+
// in the tags to be fixed)
130+
if (!jsdocParameterNames.find(({name}) => {
129131
return name === rootName;
132+
}) && !missingTags.find(({functionParameterName: fpn}) => {
133+
return fpn === rootName;
130134
})) {
131-
if (!missingTags.find(({functionParameterName: fpn}) => {
132-
return fpn === rootName;
133-
})) {
134-
const emptyParamIdx = jsdocParameterNames.findIndex(({name}) => {
135-
return !name;
136-
});
135+
const emptyParamIdx = jsdocParameterNames.findIndex(({name}) => {
136+
return !name;
137+
});
137138

138-
if (emptyParamIdx > -1) {
139-
missingTags.push({
140-
functionParameterIdx: emptyParamIdx,
141-
functionParameterName: rootName,
142-
inc,
143-
remove: true,
144-
});
145-
} else {
146-
missingTags.push({
147-
functionParameterIdx: paramIndex[rootName],
148-
functionParameterName: rootName,
149-
inc,
150-
});
151-
}
139+
if (emptyParamIdx > -1) {
140+
missingTags.push({
141+
functionParameterIdx: emptyParamIdx,
142+
functionParameterName: rootName,
143+
inc,
144+
remove: true,
145+
});
146+
} else {
147+
missingTags.push({
148+
functionParameterIdx: _.has(paramIndex, rootName) ?
149+
paramIndex[rootName] :
150+
paramIndex[paramName],
151+
functionParameterName: rootName,
152+
inc,
153+
});
152154
}
153155
}
156+
157+
if (!checkDestructured) {
158+
return;
159+
}
160+
154161
if (!checkRestProperty && rests[idx]) {
155162
return;
156163
}
@@ -252,6 +259,9 @@ export default iterateJsdoc(({
252259
default: true,
253260
type: 'boolean',
254261
},
262+
checkDestructured: {
263+
type: 'boolean',
264+
},
255265
checkGetters: {
256266
default: false,
257267
type: 'boolean',

‎test/rules/assertions/requireParam.js

+50
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,39 @@ export default {
8484
}
8585
`,
8686
},
87+
{
88+
code: `
89+
/**
90+
* @param foo
91+
*/
92+
function quux (foo, bar, {baz}) {
93+
94+
}
95+
`,
96+
errors: [
97+
{
98+
message: 'Missing JSDoc @param "bar" declaration.',
99+
},
100+
{
101+
message: 'Missing JSDoc @param "root0" declaration.',
102+
},
103+
],
104+
options: [
105+
{
106+
checkDestructured: false,
107+
},
108+
],
109+
output: `
110+
/**
111+
* @param foo
112+
* @param bar
113+
* @param root0
114+
*/
115+
function quux (foo, bar, {baz}) {
116+
117+
}
118+
`,
119+
},
87120
{
88121
code: `
89122
/**
@@ -2696,5 +2729,22 @@ export default {
26962729
`,
26972730
parser: require.resolve('@typescript-eslint/parser'),
26982731
},
2732+
{
2733+
code: `
2734+
/**
2735+
* @param foo
2736+
* @param bar
2737+
* @param cfg
2738+
*/
2739+
function quux (foo, bar, {baz}) {
2740+
2741+
}
2742+
`,
2743+
options: [
2744+
{
2745+
checkDestructured: false,
2746+
},
2747+
],
2748+
},
26992749
],
27002750
};

0 commit comments

Comments
 (0)
Please sign in to comment.