mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Fix #61396 - settings need "markdownDescription"
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
"less.lint.hexColorLength.desc": "Hex colors must consist of three or six hex numbers.",
|
||||
"less.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.",
|
||||
"less.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.",
|
||||
"less.lint.important.desc": "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.",
|
||||
"less.lint.important.desc": "Avoid using `!important`. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.",
|
||||
"less.lint.importStatement.desc": "Import statements do not load in parallel.",
|
||||
"less.lint.propertyIgnoredDueToDisplay.desc": "Property is ignored due to the display. E.g. with `display: inline`, the `width`, `height`, `margin-top`, `margin-bottom`, and `float` properties have no effect.",
|
||||
"less.lint.universalSelector.desc": "The universal selector (`*`) is known to be slow.",
|
||||
@@ -56,7 +56,7 @@
|
||||
"scss.lint.hexColorLength.desc": "Hex colors must consist of three or six hex numbers.",
|
||||
"scss.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.",
|
||||
"scss.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.",
|
||||
"scss.lint.important.desc": "Avoid using !important. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.",
|
||||
"scss.lint.important.desc": "Avoid using `!important`. It is an indication that the specificity of the entire CSS has gotten out of control and needs to be refactored.",
|
||||
"scss.lint.importStatement.desc": "Import statements do not load in parallel.",
|
||||
"scss.lint.propertyIgnoredDueToDisplay.desc": "Property is ignored due to the display. E.g. with `display: inline`, the `width`, `height`, `margin-top`, `margin-bottom`, and `float` properties have no effect.",
|
||||
"scss.lint.universalSelector.desc": "The universal selector (`*`) is known to be slow.",
|
||||
|
||||
Reference in New Issue
Block a user