Skip to content
This repository has been archived by the owner on Jun 16, 2024. It is now read-only.

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kungfooman committed Dec 5, 2023
1 parent 15aa9f1 commit e23ad48
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,14 @@ const builtins = {
"*": "#" // blerg
};

/**
* These are real @typedef's, neither callbacks nor import('abc').xyz
* This means they all have at least one property in `properties`.
*
* @type {Record<string, import('jsdoc').Doclet}
*/
const realTypedefs = {};

// Return an anchor link string from a type
const typeLink = (type) => {
// Get the name from string or type object
Expand Down Expand Up @@ -447,14 +455,6 @@ var setup = function (opts, callback) {
});
};

/**
* These are real @typedef's, neither callbacks nor import('abc').xyz
* This means they all have at least one property in `properties`.
*
* @type {Record<string, import('jsdoc').Doclet}
*/
const realTypedefs = {};

/**
* @param {TAFFY} taffyData - See <http://taffydb.com/>.
* @param {object} opts - Options object.
Expand Down

0 comments on commit e23ad48

Please sign in to comment.