Current section

Files

Jump to
spellweaver priv bun node_modules cspell dist esm util cache DummyCache.js
Raw

priv/bun/node_modules/cspell/dist/esm/util/cache/DummyCache.js

/**
* 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