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

This commit is contained in:
Michael Goderbauer 2020-10-22 13:32:55 -07:00 committed by GitHub
parent 04657354f5
commit 8273b99294
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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));