extension linter: add a warning todo

This commit is contained in:
Ulugbek Abdullaev 2023-02-20 16:15:31 +01:00
parent da6b280570
commit e4fe3740b9

View file

@ -199,7 +199,7 @@ export class ExtensionLinter {
for (const document of Array.from(this.readmeQ)) {
this.readmeQ.delete(document);
if (document.isClosed) {
return;
return; // TODO@ulugbekna: are we sure we want to return here? it may be a copy-paste problem where it used to be written with forEach, so it `return`ed instead of `continue`ing
}
const folder = this.getUriFolder(document.uri);