mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
Pick up latest markdown language service version (#162777)
Fixes #162776 Fixes #162775
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
import { Connection, Emitter } from 'vscode-languageserver';
|
||||
import { Disposable } from './util/dispose';
|
||||
|
||||
export type ValidateEnabled = 'ignore' | 'warning' | 'error';
|
||||
export type ValidateEnabled = 'ignore' | 'warning' | 'error' | 'hint';
|
||||
|
||||
interface Settings {
|
||||
readonly markdown: {
|
||||
@@ -29,6 +29,12 @@ interface Settings {
|
||||
readonly markdownFragmentLinks: ValidateEnabled | 'inherit';
|
||||
};
|
||||
readonly ignoredLinks: readonly string[];
|
||||
readonly unusedLinkDefinitions: {
|
||||
readonly enabled: ValidateEnabled;
|
||||
};
|
||||
readonly duplicateLinkDefinitions: {
|
||||
readonly enabled: ValidateEnabled;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user