|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- "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,
- utils
- }) => {
- const {
- noOptionalParamNames
- } = context.options[0] || {};
- const paramTags = utils.getPresentTags(['param', 'arg', 'argument']);
- paramTags.forEach(tag => {
- if (noOptionalParamNames && tag.optional) {
- utils.reportJSDoc(`Optional param names are not permitted on @${tag.tag}.`, tag, () => {
- utils.changeTag(tag, {
- name: tag.name.replace(/([^=]*)(=.+)?/, '$1')
- });
- });
- } else if (tag.default) {
- utils.reportJSDoc(`Defaults are not permitted on @${tag.tag}.`, tag, () => {
- utils.changeTag(tag, {
- name: tag.name.replace(/([^=]*)(=.+)?/, '[$1]')
- });
- });
- }
- });
- const defaultTags = utils.getPresentTags(['default', 'defaultvalue']);
- defaultTags.forEach(tag => {
- if (tag.description.trim()) {
- utils.reportJSDoc(`Default values are not permitted on @${tag.tag}.`, tag, () => {
- utils.changeTag(tag, {
- description: '',
- postTag: ''
- });
- });
- }
- });
- }, {
- contextDefaults: true,
- meta: {
- docs: {
- description: 'This rule reports defaults being used on the relevant portion of `@param` or `@default`.',
- url: 'https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-no-defaults'
- },
- fixable: 'code',
- schema: [{
- additionalProperties: false,
- properties: {
- contexts: {
- items: {
- anyOf: [{
- type: 'string'
- }, {
- additionalProperties: false,
- properties: {
- comment: {
- type: 'string'
- },
- context: {
- type: 'string'
- }
- },
- type: 'object'
- }]
- },
- type: 'array'
- },
- noOptionalParamNames: {
- type: 'boolean'
- }
- },
- type: 'object'
- }],
- type: 'suggestion'
- }
- });
-
- exports.default = _default;
- module.exports = exports.default;
- //# sourceMappingURL=noDefaults.js.map
|