Pick up latest markdown language service version (#162777)

Fixes #162776
Fixes #162775
This commit is contained in:
Matt Bierner
2022-10-05 15:08:51 -07:00
committed by GitHub
parent 4bd2f94ec1
commit d47ae7a2e7
8 changed files with 56 additions and 7 deletions

View File

@@ -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;
};
};
};
}