|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- "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)(({
- report,
- utils
- }) => {
- const iteratingFunction = utils.isIteratingFunction();
-
- if (iteratingFunction) {
- if (utils.hasATag(['class', 'constructor']) || utils.isConstructor()) {
- return;
- }
- } else if (!utils.isVirtualFunction()) {
- return;
- }
-
- utils.forEachPreferredTag('implements', tag => {
- report('@implements used on a non-constructor function', null, tag);
- });
- }, {
- contextDefaults: true,
- meta: {
- docs: {
- description: 'Reports an issue with any non-constructor function using `@implements`.',
- url: 'https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-implements-on-classes'
- },
- schema: [{
- additionalProperties: false,
- properties: {
- contexts: {
- items: {
- anyOf: [{
- type: 'string'
- }, {
- additionalProperties: false,
- properties: {
- comment: {
- type: 'string'
- },
- context: {
- type: 'string'
- }
- },
- type: 'object'
- }]
- },
- type: 'array'
- }
- },
- type: 'object'
- }],
- type: 'suggestion'
- }
- });
-
- exports.default = _default;
- module.exports = exports.default;
- //# sourceMappingURL=implementsOnClasses.js.map
|