mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
ea490e5545
* chore: update electron@25.3.0 * ci: update NodeTool version * chore: update @types/node * add more common types to layers checker * chore: update debian dependencies * chore: update rpm dependencies * fix: use legacy dns result order of Node.js * ci: remove deprecated always-auth npm config Refs npm/cli@72a7eeb * chore: update deb and rpm dependencies * chore: update armhf rpm dependencies * chore: update x64 debian dependencies * chore: update x64 rpm dependencies * chore: update electron@25.3.1 * chore: update electron@25.4.0 * chore: bump distro * chore: bump distro --------- Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com>
87 lines
2.1 KiB
JSON
87 lines
2.1 KiB
JSON
{
|
|
"name": "php-language-features",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"icon": "icons/logo.png",
|
|
"engines": {
|
|
"vscode": "0.10.x"
|
|
},
|
|
"activationEvents": [
|
|
"onLanguage:php"
|
|
],
|
|
"main": "./out/phpMain",
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"capabilities": {
|
|
"virtualWorkspaces": false,
|
|
"untrustedWorkspaces": {
|
|
"supported": "limited",
|
|
"description": "%workspaceTrust%",
|
|
"restrictedConfigurations": [
|
|
"php.validate.executablePath"
|
|
]
|
|
}
|
|
},
|
|
"contributes": {
|
|
"configuration": {
|
|
"title": "%configuration.title%",
|
|
"type": "object",
|
|
"order": 20,
|
|
"properties": {
|
|
"php.suggest.basic": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%configuration.suggest.basic%"
|
|
},
|
|
"php.validate.enable": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%configuration.validate.enable%"
|
|
},
|
|
"php.validate.executablePath": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
],
|
|
"default": null,
|
|
"description": "%configuration.validate.executablePath%",
|
|
"scope": "machine-overridable"
|
|
},
|
|
"php.validate.run": {
|
|
"type": "string",
|
|
"enum": [
|
|
"onSave",
|
|
"onType"
|
|
],
|
|
"default": "onSave",
|
|
"description": "%configuration.validate.run%"
|
|
}
|
|
}
|
|
},
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": "composer.json",
|
|
"url": "https://getcomposer.org/schema.json"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"compile": "npx gulp compile-extension:php-language-features",
|
|
"watch": "npx gulp watch-extension:php-language-features"
|
|
},
|
|
"dependencies": {
|
|
"which": "^2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "18.x",
|
|
"@types/which": "^2.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|