UNPKG

cspell

Version:
18 lines 360 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.mjs.map