mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Settings sweep (#54690)
This commit is contained in:
@@ -11,16 +11,16 @@
|
||||
"css.lint.fontFaceProperties.desc": "`@font-face` rule must define `src` and `font-family` properties",
|
||||
"css.lint.hexColorLength.desc": "Hex colors must consist of three or six hex numbers",
|
||||
"css.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.",
|
||||
"css.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older",
|
||||
"css.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.",
|
||||
"css.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.",
|
||||
"css.lint.importStatement.desc": "Import statements do not load in parallel",
|
||||
"css.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",
|
||||
"css.lint.universalSelector.desc": "The universal selector (*) is known to be slow",
|
||||
"css.lint.importStatement.desc": "Import statements do not load in parallel.",
|
||||
"css.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.",
|
||||
"css.lint.universalSelector.desc": "The universal selector (*) is known to be slow.",
|
||||
"css.lint.unknownAtRules.desc": "Unknown at-rule.",
|
||||
"css.lint.unknownProperties.desc": "Unknown property.",
|
||||
"css.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
|
||||
"css.lint.vendorPrefix.desc": "When using a vendor-specific prefix also include the standard property",
|
||||
"css.lint.zeroUnits.desc": "No unit for zero needed",
|
||||
"css.lint.vendorPrefix.desc": "When using a vendor-specific prefix also include the standard property.",
|
||||
"css.lint.zeroUnits.desc": "No unit for zero needed.",
|
||||
"css.trace.server.desc": "Traces the communication between VS Code and the CSS language server.",
|
||||
"css.validate.title": "Controls CSS validation and problem severities.",
|
||||
"css.validate.desc": "Enables or disables all validations",
|
||||
|
||||
Reference in New Issue
Block a user