|
| 1 | +{ |
| 2 | + "css.colorDecorators.enable.deprecationMessage": "The setting `css.colorDecorators.enable` has been deprecated in favor of `editor.colorDecorators`.", |
| 3 | + "css.completion.completePropertyWithSemicolon.desc": "Insert semicolon at end of line when completing CSS properties.", |
| 4 | + "css.completion.triggerPropertyValueCompletion.desc": "By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior.", |
| 5 | + "css.customData.desc": "A list of relative file paths pointing to JSON files following the [custom data format](https://github.com/microsoft/vscode-css-languageservice/blob/master/docs/customData.md).\n\nVS Code loads custom data on startup to enhance its CSS support for CSS custom properties (variables), at-rules, pseudo-classes, and pseudo-elements you specify in the JSON files.\n\nThe file paths are relative to workspace and only workspace folder settings are considered.", |
| 6 | + "css.format.braceStyle.desc": "Put braces on the same line as rules (`collapse`) or put braces on own line (`expand`).", |
| 7 | + "css.format.enable.desc": "Enable/disable default CSS formatter.", |
| 8 | + "css.format.maxPreserveNewLines.desc": "Maximum number of line breaks to be preserved in one chunk, when `#css.format.preserveNewLines#` is enabled.", |
| 9 | + "css.format.newlineBetweenRules.desc": "Separate rulesets by a blank line.", |
| 10 | + "css.format.newlineBetweenSelectors.desc": "Separate selectors with a new line.", |
| 11 | + "css.format.preserveNewLines.desc": "Whether existing line breaks before rules and declarations should be preserved.", |
| 12 | + "css.format.spaceAroundSelectorSeparator.desc": "Ensure a space character around selector separators `>`, `+`, `~` (e.g. `a > b`).", |
| 13 | + "css.hover.documentation": "Show property and value documentation in CSS hovers.", |
| 14 | + "css.hover.references": "Show references to MDN in CSS hovers.", |
| 15 | + "css.lint.argumentsInColorFunction.desc": "Invalid number of parameters.", |
| 16 | + "css.lint.boxModel.desc": "Do not use `width` or `height` when using `padding` or `border`.", |
| 17 | + "css.lint.compatibleVendorPrefixes.desc": "When using a vendor-specific prefix make sure to also include all other vendor-specific properties.", |
| 18 | + "css.lint.duplicateProperties.desc": "Do not use duplicate style definitions.", |
| 19 | + "css.lint.emptyRules.desc": "Do not use empty rulesets.", |
| 20 | + "css.lint.float.desc": "Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.", |
| 21 | + "css.lint.fontFaceProperties.desc": "`@font-face` rule must define `src` and `font-family` properties.", |
| 22 | + "css.lint.hexColorLength.desc": "Hex colors must consist of 3, 4, 6 or 8 hex numbers.", |
| 23 | + "css.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.", |
| 24 | + "css.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.", |
| 25 | + "css.lint.importStatement.desc": "Import statements do not load in parallel.", |
| 26 | + "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.", |
| 27 | + "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.", |
| 28 | + "css.lint.universalSelector.desc": "The universal selector (`*`) is known to be slow.", |
| 29 | + "css.lint.unknownAtRules.desc": "Unknown at-rule.", |
| 30 | + "css.lint.unknownProperties.desc": "Unknown property.", |
| 31 | + "css.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.", |
| 32 | + "css.lint.validProperties.desc": "A list of properties that are not validated against the `unknownProperties` rule.", |
| 33 | + "css.lint.vendorPrefix.desc": "When using a vendor-specific prefix, also include the standard property.", |
| 34 | + "css.lint.zeroUnits.desc": "No unit for zero needed.", |
| 35 | + "css.title": "CSS", |
| 36 | + "css.trace.server.desc": "Traces the communication between VS Code and the CSS language server.", |
| 37 | + "css.validate.desc": "Enables or disables all validations.", |
| 38 | + "css.validate.title": "Controls CSS validation and problem severities.", |
| 39 | + "description": "Provides rich language support for CSS, LESS and SCSS files.", |
| 40 | + "displayName": "CSS Language Features", |
| 41 | + "less.colorDecorators.enable.deprecationMessage": "The setting `less.colorDecorators.enable` has been deprecated in favor of `editor.colorDecorators`.", |
| 42 | + "less.completion.completePropertyWithSemicolon.desc": "Insert semicolon at end of line when completing CSS properties.", |
| 43 | + "less.completion.triggerPropertyValueCompletion.desc": "By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior.", |
| 44 | + "less.format.braceStyle.desc": "Put braces on the same line as rules (`collapse`) or put braces on own line (`expand`).", |
| 45 | + "less.format.enable.desc": "Enable/disable default LESS formatter.", |
| 46 | + "less.format.maxPreserveNewLines.desc": "Maximum number of line breaks to be preserved in one chunk, when `#less.format.preserveNewLines#` is enabled.", |
| 47 | + "less.format.newlineBetweenRules.desc": "Separate rulesets by a blank line.", |
| 48 | + "less.format.newlineBetweenSelectors.desc": "Separate selectors with a new line.", |
| 49 | + "less.format.preserveNewLines.desc": "Whether existing line breaks before rules and declarations should be preserved.", |
| 50 | + "less.format.spaceAroundSelectorSeparator.desc": "Ensure a space character around selector separators `>`, `+`, `~` (e.g. `a > b`).", |
| 51 | + "less.hover.documentation": "Show property and value documentation in LESS hovers.", |
| 52 | + "less.hover.references": "Show references to MDN in LESS hovers.", |
| 53 | + "less.lint.argumentsInColorFunction.desc": "Invalid number of parameters.", |
| 54 | + "less.lint.boxModel.desc": "Do not use `width` or `height` when using `padding` or `border`.", |
| 55 | + "less.lint.compatibleVendorPrefixes.desc": "When using a vendor-specific prefix make sure to also include all other vendor-specific properties.", |
| 56 | + "less.lint.duplicateProperties.desc": "Do not use duplicate style definitions.", |
| 57 | + "less.lint.emptyRules.desc": "Do not use empty rulesets.", |
| 58 | + "less.lint.float.desc": "Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.", |
| 59 | + "less.lint.fontFaceProperties.desc": "`@font-face` rule must define `src` and `font-family` properties.", |
| 60 | + "less.lint.hexColorLength.desc": "Hex colors must consist of 3, 4, 6 or 8 hex numbers.", |
| 61 | + "less.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.", |
| 62 | + "less.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.", |
| 63 | + "less.lint.importStatement.desc": "Import statements do not load in parallel.", |
| 64 | + "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.", |
| 65 | + "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.", |
| 66 | + "less.lint.universalSelector.desc": "The universal selector (`*`) is known to be slow.", |
| 67 | + "less.lint.unknownAtRules.desc": "Unknown at-rule.", |
| 68 | + "less.lint.unknownProperties.desc": "Unknown property.", |
| 69 | + "less.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.", |
| 70 | + "less.lint.validProperties.desc": "A list of properties that are not validated against the `unknownProperties` rule.", |
| 71 | + "less.lint.vendorPrefix.desc": "When using a vendor-specific prefix, also include the standard property.", |
| 72 | + "less.lint.zeroUnits.desc": "No unit for zero needed.", |
| 73 | + "less.title": "LESS", |
| 74 | + "less.validate.desc": "Enables or disables all validations.", |
| 75 | + "less.validate.title": "Controls LESS validation and problem severities.", |
| 76 | + "scss.colorDecorators.enable.deprecationMessage": "The setting `scss.colorDecorators.enable` has been deprecated in favor of `editor.colorDecorators`.", |
| 77 | + "scss.completion.completePropertyWithSemicolon.desc": "Insert semicolon at end of line when completing CSS properties.", |
| 78 | + "scss.completion.triggerPropertyValueCompletion.desc": "By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior.", |
| 79 | + "scss.format.braceStyle.desc": "Put braces on the same line as rules (`collapse`) or put braces on own line (`expand`).", |
| 80 | + "scss.format.enable.desc": "Enable/disable default SCSS formatter.", |
| 81 | + "scss.format.maxPreserveNewLines.desc": "Maximum number of line breaks to be preserved in one chunk, when `#scss.format.preserveNewLines#` is enabled.", |
| 82 | + "scss.format.newlineBetweenRules.desc": "Separate rulesets by a blank line.", |
| 83 | + "scss.format.newlineBetweenSelectors.desc": "Separate selectors with a new line.", |
| 84 | + "scss.format.preserveNewLines.desc": "Whether existing line breaks before rules and declarations should be preserved.", |
| 85 | + "scss.format.spaceAroundSelectorSeparator.desc": "Ensure a space character around selector separators `>`, `+`, `~` (e.g. `a > b`).", |
| 86 | + "scss.hover.documentation": "Show property and value documentation in SCSS hovers.", |
| 87 | + "scss.hover.references": "Show references to MDN in SCSS hovers.", |
| 88 | + "scss.lint.argumentsInColorFunction.desc": "Invalid number of parameters.", |
| 89 | + "scss.lint.boxModel.desc": "Do not use `width` or `height` when using `padding` or `border`.", |
| 90 | + "scss.lint.compatibleVendorPrefixes.desc": "When using a vendor-specific prefix make sure to also include all other vendor-specific properties.", |
| 91 | + "scss.lint.duplicateProperties.desc": "Do not use duplicate style definitions.", |
| 92 | + "scss.lint.emptyRules.desc": "Do not use empty rulesets.", |
| 93 | + "scss.lint.float.desc": "Avoid using `float`. Floats lead to fragile CSS that is easy to break if one aspect of the layout changes.", |
| 94 | + "scss.lint.fontFaceProperties.desc": "`@font-face` rule must define `src` and `font-family` properties.", |
| 95 | + "scss.lint.hexColorLength.desc": "Hex colors must consist of 3, 4, 6 or 8 hex numbers.", |
| 96 | + "scss.lint.idSelector.desc": "Selectors should not contain IDs because these rules are too tightly coupled with the HTML.", |
| 97 | + "scss.lint.ieHack.desc": "IE hacks are only necessary when supporting IE7 and older.", |
| 98 | + "scss.lint.importStatement.desc": "Import statements do not load in parallel.", |
| 99 | + "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.", |
| 100 | + "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.", |
| 101 | + "scss.lint.universalSelector.desc": "The universal selector (`*`) is known to be slow.", |
| 102 | + "scss.lint.unknownAtRules.desc": "Unknown at-rule.", |
| 103 | + "scss.lint.unknownProperties.desc": "Unknown property.", |
| 104 | + "scss.lint.unknownVendorSpecificProperties.desc": "Unknown vendor specific property.", |
| 105 | + "scss.lint.validProperties.desc": "A list of properties that are not validated against the `unknownProperties` rule.", |
| 106 | + "scss.lint.vendorPrefix.desc": "When using a vendor-specific prefix, also include the standard property.", |
| 107 | + "scss.lint.zeroUnits.desc": "No unit for zero needed.", |
| 108 | + "scss.title": "SCSS (Sass)", |
| 109 | + "scss.validate.desc": "Enables or disables all validations.", |
| 110 | + "scss.validate.title": "Controls SCSS validation and problem severities." |
| 111 | +} |
0 commit comments