Update validProperties description. Fix #62162

This commit is contained in:
Pine Wu 2018-10-31 12:49:41 -07:00
parent 6c6dfcc35c
commit 988c2fa767
2 changed files with 12 additions and 9 deletions

View file

@ -178,9 +178,10 @@
"description": "%css.lint.unknownProperties.desc%"
},
"css.lint.validProperties": {
"type": "string",
"type": "array",
"uniqueItems": true,
"scope": "resource",
"default": "",
"default": [],
"description": "%css.lint.validProperties.desc%"
},
"css.lint.ieHack": {
@ -424,9 +425,10 @@
"description": "%scss.lint.unknownProperties.desc%"
},
"scss.lint.validProperties": {
"type": "string",
"type": "array",
"uniqueItems": true,
"scope": "resource",
"default": "",
"default": [],
"description": "%scss.lint.validProperties.desc%"
},
"scss.lint.ieHack": {
@ -649,9 +651,10 @@
"description": "%less.lint.unknownProperties.desc%"
},
"less.lint.validProperties": {
"type": "string",
"type": "array",
"uniqueItems": true,
"scope": "resource",
"default": "",
"default": [],
"description": "%less.lint.validProperties.desc%"
},
"less.lint.ieHack": {

View file

@ -18,7 +18,7 @@
"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.validProperties.desc": "A comma separated list of properties thta are not validated.",
"css.lint.validProperties.desc": "A list of properties that are not validated against the `unknownProperties` rule.",
"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.",
@ -41,7 +41,7 @@
"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.",
"less.lint.unknownProperties.desc": "Unknown property.",
"less.lint.validProperties.desc": "A comma separated list of properties thta are not validated.",
"less.lint.validProperties.desc": "A list of properties that are not validated against the `unknownProperties` rule.",
"less.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
"less.lint.vendorPrefix.desc": "When using a vendor-specific prefix, also include the standard property.",
"less.lint.zeroUnits.desc": "No unit for zero needed.",
@ -63,7 +63,7 @@
"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.",
"scss.lint.unknownProperties.desc": "Unknown property.",
"scss.lint.validProperties.desc": "A comma separated list of properties thta are not validated.",
"scss.lint.validProperties.desc": "A list of properties that are not validated against the `unknownProperties` rule.",
"scss.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.",
"scss.lint.vendorPrefix.desc": "When using a vendor-specific prefix, also include the standard property.",
"scss.lint.zeroUnits.desc": "No unit for zero needed.",