We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 154d765 commit c1b4671Copy full SHA for c1b4671
packages/eslint-mdx/src/worker.ts
@@ -89,7 +89,9 @@ export const getRemarkProcessor = async (
89
? null
90
: await explorer.search(searchFrom)
91
92
- const cacheKey = result ? `${String(isMdx)}-${result.filepath}` : ''
+ const cacheKey = result
93
+ ? `${String(isMdx)}-${result.filepath}`
94
+ : String(isMdx)
95
96
cachedProcessor = processorCache.get(cacheKey)
97
0 commit comments