Skip to content

Commit fbee6c8

Browse files
committedDec 18, 2021
fix(no-restricted-syntax): avoid matching contexts when in different items of contexts array; fixes #818
1 parent 135ec94 commit fbee6c8

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed
 

‎README.md

+9
Original file line numberDiff line numberDiff line change
@@ -9018,6 +9018,15 @@ function a () {}
90189018
* @param cd
90199019
*/
90209020
// "jsdoc/no-restricted-syntax": ["error"|"warn", {"contexts":[{"comment":"JsdocBlock:has(JsdocTag[name=/opt_/])","message":"Only allowing names not matching `/^opt_/i`."}]}]
9021+
9022+
/**
9023+
* @enum {String}
9024+
* Object holding values of some custom enum
9025+
*/
9026+
const MY_ENUM = Object.freeze({
9027+
VAL_A: "myvala"
9028+
} as const);
9029+
// "jsdoc/no-restricted-syntax": ["error"|"warn", {"contexts":[{"comment":"JsdocBlock[postDelimiter=\"\"]:has(JsdocTag ~ JsdocTag[tag=/private|protected/])","context":"any","message":"Access modifier tags must come first"},{"comment":"JsdocBlock[postDelimiter=\"\"]:has(JsdocTag[tag=\"enum\"])","context":":declaration:not(TSEnumDeclaration):not(:has(ObjectExpression)), :function","message":"@enum is only allowed on potential enum types"}]}]
90219030
````
90229031

90239032

‎src/rules/noRestrictedSyntax.js

+6
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ export default iterateJsdoc(({
2020
comment === cntxt.comment;
2121
});
2222

23+
// We are not on the *particular* matching context/comment, so don't assume
24+
// we need reporting
25+
if (!foundContext) {
26+
return;
27+
}
28+
2329
const contextStr = typeof foundContext === 'object' ?
2430
foundContext.context ?? 'any' :
2531
foundContext;

‎test/rules/assertions/noRestrictedSyntax.js

+26
Original file line numberDiff line numberDiff line change
@@ -314,5 +314,31 @@ export default {
314314
],
315315
}],
316316
},
317+
{
318+
code: `
319+
/**
320+
* @enum {String}
321+
* Object holding values of some custom enum
322+
*/
323+
const MY_ENUM = Object.freeze({
324+
VAL_A: "myvala"
325+
} as const);
326+
`,
327+
options: [{
328+
contexts: [
329+
{
330+
comment: 'JsdocBlock[postDelimiter=""]:has(JsdocTag ~ JsdocTag[tag=/private|protected/])',
331+
context: 'any',
332+
message: 'Access modifier tags must come first',
333+
},
334+
{
335+
comment: 'JsdocBlock[postDelimiter=""]:has(JsdocTag[tag="enum"])',
336+
context: ':declaration:not(TSEnumDeclaration):not(:has(ObjectExpression)), :function',
337+
message: '@enum is only allowed on potential enum types',
338+
},
339+
],
340+
}],
341+
parser: require.resolve('@typescript-eslint/parser'),
342+
},
317343
],
318344
};

0 commit comments

Comments
 (0)
Please sign in to comment.