Skip to content

Commit

Permalink
docs: do not filter documentation of class and interface members with…
Browse files Browse the repository at this point in the history
… ignore words list
  • Loading branch information
tmair committed May 2, 2022
1 parent 12e64fb commit a8ba29d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/* eslint-disable */

/**
Expand Down Expand Up @@ -29,6 +28,7 @@ module.exports = function generateKeywordsProcessor(log) {

// Keywords to ignore
const ignoreWords = new Set(this.ignoreWords);
const emptySet = new Set();
log.debug('Words to ignore', ignoreWords);
const propertiesToIgnore = new Set(this.propertiesToIgnore);
log.debug('Properties to ignore', propertiesToIgnore);
Expand All @@ -51,7 +51,7 @@ module.exports = function generateKeywordsProcessor(log) {
}
}

const memberTokens = extractMemberTokens(doc, ignoreWords, dictionary);
const memberTokens = extractMemberTokens(doc, emptySet, dictionary);

// Extract all the keywords from the headings
let headingTokens = [];
Expand Down

0 comments on commit a8ba29d

Please sign in to comment.