Skip to content

Commit

Permalink
remove @requires
Browse files Browse the repository at this point in the history
  • Loading branch information
kalinchernev committed Oct 18, 2020
1 parent 068581a commit 0d66d5c
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion lib/helpers/convertGlobPaths.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const glob = require('glob');
* Converts an array of globs to full paths
* @param {array} globs - Array of globs and/or normal paths
* @return {array} Array of fully-qualified paths
* @requires glob
*/
function convertGlobPaths(globs) {
return globs
Expand Down
1 change: 0 additions & 1 deletion lib/helpers/filterJsDocComments.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const jsYaml = require('js-yaml');
* Filters JSDoc comments for those tagged with '@swagger'
* @param {array} jsDocComments - JSDoc comments
* @returns {array} JSDoc comments tagged with '@swagger'
* @requires js-yaml
*/
function filterJsDocComments(jsDocComments) {
const swaggerJsDocComments = [];
Expand Down
1 change: 0 additions & 1 deletion lib/helpers/parseApiFileContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ const jsYaml = require('js-yaml');
* @param {string} fileContent - Content of the file
* @param {string} ext - File format ('.yaml', '.yml', '.js', etc.)
* @returns {{jsdoc: array, yaml: array}} JSDoc comments and Yaml files
* @requires doctrine
*/
function parseApiFileContent(fileContent, ext) {
const jsDocRegex = /\/\*\*([\s\S]*?)\*\//gm;
Expand Down
1 change: 0 additions & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const finalizeSpecificationObject = require('./helpers/finalizeSpecificationObje
* Generates the specification.
* @param {object} options - Configuration options
* @returns {object} Output specification
* @requires swagger-parser
*/
module.exports = (options) => {
if (!options.swaggerDefinition && !options.definition) {
Expand Down

0 comments on commit 0d66d5c

Please sign in to comment.