Add setting to control markdown LS log level (#176472)

This commit is contained in:
Matt Bierner
2023-03-07 23:00:34 -08:00
committed by GitHub
parent b2ea6aa9fc
commit da15b03a10
5 changed files with 58 additions and 22 deletions

View File

@@ -10,6 +10,10 @@ export type ValidateEnabled = 'ignore' | 'warning' | 'error' | 'hint';
export interface Settings {
readonly markdown: {
readonly server: {
readonly log: 'off' | 'debug' | 'trace';
};
readonly preferredMdPathExtensionStyle: 'auto' | 'includeExtension' | 'removeExtension';
readonly occurrencesHighlight: {