mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 12:04:04 +01:00
[css] add multiroot support. Fixes #32486
This commit is contained in:
@@ -62,16 +62,19 @@
|
||||
"properties": {
|
||||
"css.validate": {
|
||||
"type": "boolean",
|
||||
"scope": "resource",
|
||||
"default": true,
|
||||
"description": "%css.validate.desc%"
|
||||
},
|
||||
"css.colorDecorators.enable": {
|
||||
"type": "boolean",
|
||||
"scope": "window",
|
||||
"default": true,
|
||||
"description": "%css.colorDecorators.enable.desc%"
|
||||
},
|
||||
"css.lint.compatibleVendorPrefixes": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -82,6 +85,7 @@
|
||||
},
|
||||
"css.lint.vendorPrefix": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -92,6 +96,7 @@
|
||||
},
|
||||
"css.lint.duplicateProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -102,6 +107,7 @@
|
||||
},
|
||||
"css.lint.emptyRules": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -112,6 +118,7 @@
|
||||
},
|
||||
"css.lint.importStatement": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -122,6 +129,7 @@
|
||||
},
|
||||
"css.lint.boxModel": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -132,6 +140,7 @@
|
||||
},
|
||||
"css.lint.universalSelector": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -142,6 +151,7 @@
|
||||
},
|
||||
"css.lint.zeroUnits": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -152,6 +162,7 @@
|
||||
},
|
||||
"css.lint.fontFaceProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -162,6 +173,7 @@
|
||||
},
|
||||
"css.lint.hexColorLength": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -172,6 +184,7 @@
|
||||
},
|
||||
"css.lint.argumentsInColorFunction": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -182,6 +195,7 @@
|
||||
},
|
||||
"css.lint.unknownProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -192,6 +206,7 @@
|
||||
},
|
||||
"css.lint.ieHack": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -202,6 +217,7 @@
|
||||
},
|
||||
"css.lint.unknownVendorSpecificProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -212,6 +228,7 @@
|
||||
},
|
||||
"css.lint.propertyIgnoredDueToDisplay": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -222,6 +239,7 @@
|
||||
},
|
||||
"css.lint.important": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -232,6 +250,7 @@
|
||||
},
|
||||
"css.lint.float": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -242,6 +261,7 @@
|
||||
},
|
||||
"css.lint.idSelector": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -252,6 +272,7 @@
|
||||
},
|
||||
"css.trace.server": {
|
||||
"type": "string",
|
||||
"scope": "window",
|
||||
"enum": [
|
||||
"off",
|
||||
"messages",
|
||||
@@ -274,16 +295,19 @@
|
||||
"properties": {
|
||||
"scss.validate": {
|
||||
"type": "boolean",
|
||||
"scope": "resource",
|
||||
"default": true,
|
||||
"description": "%scss.validate.desc%"
|
||||
},
|
||||
"scss.colorDecorators.enable": {
|
||||
"type": "boolean",
|
||||
"scope": "window",
|
||||
"default": true,
|
||||
"description": "%scss.colorDecorators.enable.desc%"
|
||||
},
|
||||
"scss.lint.compatibleVendorPrefixes": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -294,6 +318,7 @@
|
||||
},
|
||||
"scss.lint.vendorPrefix": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -304,6 +329,7 @@
|
||||
},
|
||||
"scss.lint.duplicateProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -314,6 +340,7 @@
|
||||
},
|
||||
"scss.lint.emptyRules": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -324,6 +351,7 @@
|
||||
},
|
||||
"scss.lint.importStatement": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -334,6 +362,7 @@
|
||||
},
|
||||
"scss.lint.boxModel": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -344,6 +373,7 @@
|
||||
},
|
||||
"scss.lint.universalSelector": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -354,6 +384,7 @@
|
||||
},
|
||||
"scss.lint.zeroUnits": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -364,6 +395,7 @@
|
||||
},
|
||||
"scss.lint.fontFaceProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -374,6 +406,7 @@
|
||||
},
|
||||
"scss.lint.hexColorLength": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -384,6 +417,7 @@
|
||||
},
|
||||
"scss.lint.argumentsInColorFunction": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -394,6 +428,7 @@
|
||||
},
|
||||
"scss.lint.unknownProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -404,6 +439,7 @@
|
||||
},
|
||||
"scss.lint.ieHack": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -414,6 +450,7 @@
|
||||
},
|
||||
"scss.lint.unknownVendorSpecificProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -424,6 +461,7 @@
|
||||
},
|
||||
"scss.lint.propertyIgnoredDueToDisplay": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -434,6 +472,7 @@
|
||||
},
|
||||
"scss.lint.important": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -444,6 +483,7 @@
|
||||
},
|
||||
"scss.lint.float": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -454,6 +494,7 @@
|
||||
},
|
||||
"scss.lint.idSelector": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -477,16 +518,19 @@
|
||||
"properties": {
|
||||
"less.validate": {
|
||||
"type": "boolean",
|
||||
"scope": "resource",
|
||||
"default": true,
|
||||
"description": "%less.validate.desc%"
|
||||
},
|
||||
"less.colorDecorators.enable": {
|
||||
"type": "boolean",
|
||||
"scope": "window",
|
||||
"default": true,
|
||||
"description": "%less.colorDecorators.enable.desc%"
|
||||
},
|
||||
"less.lint.compatibleVendorPrefixes": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -497,6 +541,7 @@
|
||||
},
|
||||
"less.lint.vendorPrefix": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -507,6 +552,7 @@
|
||||
},
|
||||
"less.lint.duplicateProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -517,6 +563,7 @@
|
||||
},
|
||||
"less.lint.emptyRules": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -527,6 +574,7 @@
|
||||
},
|
||||
"less.lint.importStatement": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -537,6 +585,7 @@
|
||||
},
|
||||
"less.lint.boxModel": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -547,6 +596,7 @@
|
||||
},
|
||||
"less.lint.universalSelector": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -557,6 +607,7 @@
|
||||
},
|
||||
"less.lint.zeroUnits": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -567,6 +618,7 @@
|
||||
},
|
||||
"less.lint.fontFaceProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -577,6 +629,7 @@
|
||||
},
|
||||
"less.lint.hexColorLength": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -587,6 +640,7 @@
|
||||
},
|
||||
"less.lint.argumentsInColorFunction": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -597,6 +651,7 @@
|
||||
},
|
||||
"less.lint.unknownProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -607,6 +662,7 @@
|
||||
},
|
||||
"less.lint.ieHack": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -617,6 +673,7 @@
|
||||
},
|
||||
"less.lint.unknownVendorSpecificProperties": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -627,6 +684,7 @@
|
||||
},
|
||||
"less.lint.propertyIgnoredDueToDisplay": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -637,6 +695,7 @@
|
||||
},
|
||||
"less.lint.important": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -647,6 +706,7 @@
|
||||
},
|
||||
"less.lint.float": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -657,6 +717,7 @@
|
||||
},
|
||||
"less.lint.idSelector": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
@@ -674,7 +735,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"parse-color": "^1.0.0",
|
||||
"vscode-languageclient": "^3.2.0",
|
||||
"vscode-languageclient": "^3.4.0-next.4",
|
||||
"vscode-nls": "^2.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
Reference in New Issue
Block a user