Unverified Commit 8273b992 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Remove dartdoc checker exclusion for class and library files (#68726)

parent 04657354
......@@ -56,12 +56,6 @@ void checkForUnresolvedDirectives(String htmlOutputPath) {
continue;
}
canaryFiles.remove(path.basename(entity.path));
// TODO(goderbauer): Remove this exception when https://github.com/dart-lang/dartdoc/issues/2272 is fixed.
if (entity.path.endsWith('-class.html') || entity.path.endsWith('-library.html') ) {
continue;
}
count += _scanFile(entity);
} else if (entity is Directory) {
canaryLibraries.remove(path.basename(entity.path));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment