docs(readme): remove mentions of formatting
parent
9e9bd18083
commit
ad483b305a
|
@ -34,12 +34,12 @@ I recommend to disable VS Code's built-in PHP IntelliSense by setting `php.sugge
|
||||||
### Find all symbols
|
### Find all symbols
|
||||||

|

|
||||||
|
|
||||||
### Format code
|
|
||||||

|
|
||||||
|
|
||||||
### Column-accurate error reporting
|
### Column-accurate error reporting
|
||||||

|

|
||||||
|
|
||||||
|
### Format code
|
||||||
|
Please use a dedicated extension like [PHP CodeSniffer](https://marketplace.visualstudio.com/items?itemName=ikappas.phpcs).
|
||||||
|
|
||||||
|
|
||||||
## Todo
|
## Todo
|
||||||
- Rename
|
- Rename
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 51 KiB |
199
package.json
199
package.json
|
@ -1,99 +1,104 @@
|
||||||
{
|
{
|
||||||
"name": "php-intellisense",
|
"name": "php-intellisense",
|
||||||
"displayName": "PHP IntelliSense",
|
"displayName": "PHP IntelliSense",
|
||||||
"description": "Advanced Autocompletion and Refactoring support for PHP",
|
"description": "Advanced Autocompletion and Refactoring support for PHP",
|
||||||
"publisher": "felixfbecker",
|
"publisher": "felixfbecker",
|
||||||
"author": "Felix Becker <felix.b@outlook.com>",
|
"author": "Felix Becker <felix.b@outlook.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"private": true,
|
"private": true,
|
||||||
"preview": false,
|
"preview": false,
|
||||||
"version": "0.0.0-development",
|
"version": "1.5.4",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.17.1"
|
"vscode": "^1.17.1"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"php",
|
"php",
|
||||||
"intellisense",
|
"intellisense",
|
||||||
"autocompletion",
|
"autocompletion",
|
||||||
"help",
|
"help",
|
||||||
"refactor"
|
"refactor"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"Languages"
|
"Languages"
|
||||||
],
|
],
|
||||||
"icon": "images/logo.png",
|
"icon": "images/logo.png",
|
||||||
"galleryBanner": {
|
"galleryBanner": {
|
||||||
"color": "#6682BA",
|
"color": "#6682BA",
|
||||||
"theme": "dark"
|
"theme": "dark"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/felixfbecker/vscode-php-intellisense.git"
|
"url": "https://github.com/felixfbecker/vscode-php-intellisense.git"
|
||||||
},
|
},
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/felixfbecker/php-language-server/issues"
|
"url": "https://github.com/felixfbecker/php-language-server/issues"
|
||||||
},
|
},
|
||||||
"activationEvents": [
|
"activationEvents": [
|
||||||
"onLanguage:php",
|
"onLanguage:php",
|
||||||
"workspaceContains:**/*.php"
|
"workspaceContains:**/*.php"
|
||||||
],
|
],
|
||||||
"main": "./out/extension",
|
"main": "./out/extension",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc -p .",
|
"build": "tsc -p .",
|
||||||
"watch": "tsc -w -p .",
|
"watch": "tsc -w -p .",
|
||||||
"postinstall": "node ./node_modules/vscode/bin/install",
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
||||||
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
|
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
|
||||||
"semantic-release": "semantic-release pre && vsce publish -p $VSCE_TOKEN && semantic-release post",
|
"semantic-release": "semantic-release pre && vsce publish -p $VSCE_TOKEN && semantic-release post",
|
||||||
"commitmsg": "validate-commit-msg"
|
"commitmsg": "validate-commit-msg"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/mocha": "^2.2.42",
|
"@types/mocha": "^2.2.42",
|
||||||
"@types/mz": "^0.0.31",
|
"@types/mz": "^0.0.31",
|
||||||
"@types/node": "^8.0.24",
|
"@types/node": "^8.0.24",
|
||||||
"@types/semver": "^5.3.34",
|
"@types/semver": "^5.3.34",
|
||||||
"cz-conventional-changelog": "^2.0.0",
|
"cz-conventional-changelog": "^2.0.0",
|
||||||
"husky": "^0.14.3",
|
"husky": "^0.14.3",
|
||||||
"last-release-git": "0.0.3",
|
"last-release-git": "0.0.3",
|
||||||
"semantic-release": "^8.2.0",
|
"semantic-release": "^8.2.0",
|
||||||
"tslint": "^5.0.0",
|
"tslint": "^5.0.0",
|
||||||
"typescript": "^2.1.4",
|
"typescript": "^2.1.4",
|
||||||
"validate-commit-msg": "^2.14.0",
|
"validate-commit-msg": "^2.14.0",
|
||||||
"vsce": "^1.8.1",
|
"vsce": "^1.8.1",
|
||||||
"vscode": "^1.0.0"
|
"vscode": "^1.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"mz": "^2.4.0",
|
"mz": "^2.4.0",
|
||||||
"semver": "^5.3.0",
|
"semver": "^5.3.0",
|
||||||
"vscode-languageclient": "^3.0.3"
|
"vscode-languageclient": "^3.0.3"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"commitizen": {
|
"commitizen": {
|
||||||
"path": "./node_modules/cz-conventional-changelog"
|
"path": "./node_modules/cz-conventional-changelog"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"release": {
|
"release": {
|
||||||
"getLastRelease": "last-release-git"
|
"getLastRelease": "last-release-git"
|
||||||
},
|
},
|
||||||
"contributes": {
|
"contributes": {
|
||||||
"configuration": {
|
"configuration": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "PHP IntelliSense",
|
"title": "PHP IntelliSense",
|
||||||
"properties": {
|
"properties": {
|
||||||
"php.memoryLimit": {
|
"php.memoryLimit": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": "-1",
|
"default": "-1",
|
||||||
"description": "The memory limit of the php language server. [Number][K|M|G]. Use '-1' to allow unlimited use of the RAM(default).",
|
"description": "The memory limit of the php language server. [Number][K|M|G]. Use '-1' to allow unlimited use of the RAM(default).",
|
||||||
"pattern": "^\\d+[KMG]?$"
|
"pattern": "^\\d+[KMG]?$"
|
||||||
},
|
},
|
||||||
"php.executablePath": {
|
"php.executablePath": {
|
||||||
"type": [
|
"type": [
|
||||||
"string",
|
"string",
|
||||||
"null"
|
"null"
|
||||||
],
|
],
|
||||||
"default": null,
|
"default": null,
|
||||||
"description": "The path to a PHP 7+ executable."
|
"description": "The path to a PHP 7+ executable."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"__metadata": {
|
||||||
|
"id": "5e69f001-f945-4c97-baf0-320d82a153b3",
|
||||||
|
"publisherDisplayName": "Felix Becker",
|
||||||
|
"publisherId": "2bbbc574-aea7-4866-8f36-2d56ef365f8c"
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue