123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- "use strict";
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
-
- var _iterateJsdoc = _interopRequireDefault(require("../iterateJsdoc"));
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
-
- var _default = (0, _iterateJsdoc.default)(({
- context,
- info: {
- selector,
- comment
- },
- report
- }) => {
- var _foundContext$context, _foundContext$message;
-
- if (!context.options.length) {
- report('Rule `no-restricted-syntax` is missing a `context` option.');
- return;
- }
-
- const {
- contexts
- } = context.options[0];
- const foundContext = contexts.find(cntxt => {
- return cntxt === selector || typeof cntxt === 'object' && (!cntxt.context || cntxt.context === 'any' || selector === cntxt.context) && comment === cntxt.comment;
- });
- const contextStr = typeof foundContext === 'object' ? (_foundContext$context = foundContext.context) !== null && _foundContext$context !== void 0 ? _foundContext$context : 'any' : foundContext;
- const message = (_foundContext$message = foundContext === null || foundContext === void 0 ? void 0 : foundContext.message) !== null && _foundContext$message !== void 0 ? _foundContext$message : 'Syntax is restricted: {{context}}.';
- report(message, null, null, {
- context: contextStr
- });
- }, {
- contextSelected: true,
- meta: {
- docs: {
- description: 'Reports when certain comment structures are present.',
- url: 'https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-no-restricted-syntax'
- },
- fixable: 'code',
- schema: [{
- additionalProperties: false,
- properties: {
- contexts: {
- items: {
- anyOf: [{
- type: 'string'
- }, {
- additionalProperties: false,
- properties: {
- comment: {
- type: 'string'
- },
- context: {
- type: 'string'
- },
- message: {
- type: 'string'
- }
- },
- type: 'object'
- }]
- },
- type: 'array'
- }
- },
- required: ['contexts'],
- type: 'object'
- }],
- type: 'suggestion'
- }
- });
-
- exports.default = _default;
- module.exports = exports.default;
- //# sourceMappingURL=noRestrictedSyntax.js.map
|