Finalize markdown diagnostics (#161427)

Fixes #146303

This moves the markdown diagnostic support out of `experimental` and to an official feature (however it remains off by default)
This commit is contained in:
Matt Bierner
2022-09-21 12:20:25 -07:00
committed by GitHub
parent 1fba6ec98a
commit 17bb582b85
6 changed files with 52 additions and 73 deletions

View File

@@ -434,81 +434,63 @@
"experimental"
]
},
"markdown.experimental.validate.enabled": {
"markdown.validate.enabled": {
"type": "boolean",
"scope": "resource",
"description": "%configuration.markdown.experimental.validate.enabled.description%",
"default": false,
"tags": [
"experimental"
]
"description": "%configuration.markdown.validate.enabled.description%",
"default": false
},
"markdown.experimental.validate.referenceLinks.enabled": {
"markdown.validate.referenceLinks.enabled": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.experimental.validate.referenceLinks.enabled.description%",
"markdownDescription": "%configuration.markdown.validate.referenceLinks.enabled.description%",
"default": "warning",
"enum": [
"ignore",
"warning",
"error"
],
"tags": [
"experimental"
]
},
"markdown.experimental.validate.fragmentLinks.enabled": {
"markdown.validate.fragmentLinks.enabled": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.experimental.validate.fragmentLinks.enabled.description%",
"markdownDescription": "%configuration.markdown.validate.fragmentLinks.enabled.description%",
"default": "warning",
"enum": [
"ignore",
"warning",
"error"
],
"tags": [
"experimental"
]
},
"markdown.experimental.validate.fileLinks.enabled": {
"markdown.validate.fileLinks.enabled": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.experimental.validate.fileLinks.enabled.description%",
"markdownDescription": "%configuration.markdown.validate.fileLinks.enabled.description%",
"default": "warning",
"enum": [
"ignore",
"warning",
"error"
],
"tags": [
"experimental"
]
},
"markdown.experimental.validate.fileLinks.markdownFragmentLinks": {
"markdown.validate.fileLinks.markdownFragmentLinks": {
"type": "string",
"scope": "resource",
"markdownDescription": "%configuration.markdown.experimental.validate.fileLinks.markdownFragmentLinks.description%",
"markdownDescription": "%configuration.markdown.validate.fileLinks.markdownFragmentLinks.description%",
"default": "ignore",
"enum": [
"ignore",
"warning",
"error"
],
"tags": [
"experimental"
]
},
"markdown.experimental.validate.ignoreLinks": {
"markdown.validate.ignoredLinks": {
"type": "array",
"scope": "resource",
"markdownDescription": "%configuration.markdown.experimental.validate.ignoreLinks.description%",
"markdownDescription": "%configuration.markdown.validate.ignoredLinks.description%",
"items": {
"type": "string"
},
"tags": [
"experimental"
]
}
},
"markdown.experimental.updateLinksOnFileMove.enabled": {
"type": "string",