Skip to content

Commit

Permalink
fix(ignore): not change when unexported or undocument
Browse files Browse the repository at this point in the history
  • Loading branch information
h13i32maru committed Apr 23, 2017
1 parent 5e3de80 commit 874abc5
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/ESDoc.js
Expand Up @@ -85,12 +85,6 @@ export default class ESDoc {
this._generateForTest(config, results, asts);
}

// ignore unexported and undocumented
for (const tag of results) {
if (tag.export === false) tag.ignore = true;
if (tag.undocument === true) tag.ignore = true;
}

// config.index
if (config.index) {
results.push(this._generateForIndex(config));
Expand Down

0 comments on commit 874abc5

Please sign in to comment.