mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
SCSS unknown at rules
This commit is contained in:
@@ -3,7 +3,10 @@
|
||||
"compounds": [
|
||||
{
|
||||
"name": "Debug Extension and Language Server",
|
||||
"configurations": ["Launch Extension", "Attach Language Server"]
|
||||
"configurations": [
|
||||
"Launch Extension",
|
||||
"Attach Language Server"
|
||||
]
|
||||
}
|
||||
],
|
||||
"configurations": [
|
||||
@@ -17,7 +20,9 @@
|
||||
],
|
||||
"stopOnEntry": false,
|
||||
"sourceMaps": true,
|
||||
"outFiles": ["${workspaceFolder}/client/out/**/*.js"],
|
||||
"outFiles": [
|
||||
"${workspaceFolder}/client/out/**/*.js"
|
||||
],
|
||||
"smartStep": true,
|
||||
"preLaunchTask": "npm: compile"
|
||||
},
|
||||
@@ -26,10 +31,15 @@
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": ["--extensionDevelopmentPath=${workspaceFolder}", "--extensionTestsPath=${workspaceFolder}/client/out/test" ],
|
||||
"args": [
|
||||
"--extensionDevelopmentPath=${workspaceFolder}",
|
||||
"--extensionTestsPath=${workspaceFolder}/client/out/test"
|
||||
],
|
||||
"stopOnEntry": false,
|
||||
"sourceMaps": true,
|
||||
"outFiles": ["${workspaceFolder}/client/out/test/**/*.js"],
|
||||
"outFiles": [
|
||||
"${workspaceFolder}/client/out/test/**/*.js"
|
||||
],
|
||||
"preLaunchTask": "npm: compile"
|
||||
},
|
||||
{
|
||||
@@ -39,7 +49,9 @@
|
||||
"protocol": "inspector",
|
||||
"port": 6044,
|
||||
"sourceMaps": true,
|
||||
"outFiles": ["${workspaceFolder}/server/out/**/*.js"],
|
||||
"outFiles": [
|
||||
"${workspaceFolder}/server/out/**/*.js"
|
||||
],
|
||||
"smartStep": true,
|
||||
"restart": true
|
||||
}
|
||||
|
||||
@@ -243,6 +243,17 @@
|
||||
"default": "ignore",
|
||||
"description": "%css.lint.idSelector.desc%"
|
||||
},
|
||||
"css.lint.unknownAtRules": {
|
||||
"type": "string",
|
||||
"scope": "resource",
|
||||
"enum": [
|
||||
"ignore",
|
||||
"warning",
|
||||
"error"
|
||||
],
|
||||
"default": "warning",
|
||||
"description": "%css.lint.unknownAtRules.desc%"
|
||||
},
|
||||
"css.trace.server": {
|
||||
"type": "string",
|
||||
"scope": "window",
|
||||
@@ -704,4 +715,4 @@
|
||||
"@types/node": "7.0.43",
|
||||
"mocha": "^5.2.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -16,6 +16,7 @@
|
||||
"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",
|
||||
|
||||
Reference in New Issue
Block a user