UNPKG

cspell

Version:

A Spelling Checker for Code!

18 lines 359 B
/** * 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