Suppress extension diagnostics in code blocks (#207754)

May re-enable in the future. Also we can't simply disable the markers feature as this also turns off a number of useful markers for stuff like go to def
This commit is contained in:
Matt Bierner
2024-03-18 10:57:25 -07:00
committed by GitHub
parent 1b1b41c41b
commit 6ab9dd8ff1
@@ -12,7 +12,7 @@ import { Schemas } from 'vs/base/common/network';
import { URI } from 'vs/base/common/uri';
import { IMarker, IMarkerData, IMarkerService, IResourceMarker, MarkerSeverity, MarkerStatistics } from './markers';
export const unsupportedSchemas = new Set([Schemas.inMemory, Schemas.vscodeSourceControl, Schemas.walkThrough, Schemas.walkThroughSnippet]);
export const unsupportedSchemas = new Set([Schemas.inMemory, Schemas.vscodeSourceControl, Schemas.walkThrough, Schemas.walkThroughSnippet, Schemas.vscodeChatCodeBlock]);
class DoubleResourceMap<V> {