-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
checkAccess.js
45 lines (41 loc) · 1.24 KB
/
checkAccess.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
import iterateJsdoc from '../iterateJsdoc.js';
const accessLevels = [
'package', 'private', 'protected', 'public',
];
export default iterateJsdoc(({
report,
utils,
}) => {
utils.forEachPreferredTag('access', (jsdocParameter, targetTagName) => {
const desc = jsdocParameter.name + ' ' + jsdocParameter.description;
if (!accessLevels.includes(desc.trim())) {
report(
`Missing valid JSDoc @${targetTagName} level.`,
null,
jsdocParameter,
);
}
});
const accessLength = utils.getTags('access').length;
const individualTagLength = utils.getPresentTags(accessLevels).length;
if (accessLength && individualTagLength) {
report(
'The @access tag may not be used with specific access-control tags (@package, @private, @protected, or @public).',
);
}
if (accessLength > 1 || individualTagLength > 1) {
report(
'At most one access-control tag may be present on a jsdoc block.',
);
}
}, {
checkPrivate: true,
iterateAllJsdocs: true,
meta: {
docs: {
description: 'Checks that `@access` tags have a valid value.',
url: 'https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/check-access.md#repos-sticky-header',
},
type: 'suggestion',
},
});