cspell
Version:
A Spelling Checker for Code!
18 lines • 359 B
JavaScript
/**
* Dummy cache implementation that should be usd if caching option is disabled.
*/
export class DummyCache {
getCachedLintResults() {
return Promise.resolve(undefined);
}
setCachedLintResults() {
return;
}
reconcile() {
return;
}
reset() {
return;
}
}
//# sourceMappingURL=DummyCache.js.map