forked from fabric8-analytics/fabric8-analytics-lsp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request fabric8-analytics#2 from invincibleJai/lsp-integra…
…tion implements lsp integration with extension
- Loading branch information
Showing
18 changed files
with
1,362 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,22 +14,25 @@ | |
"theme": "dark" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/invincibleJai/fabric8-analytics-vsc-stackreports/issues", | ||
"url": "https://github.com/invincibleJai/fabric8-analytics-vsc/issues", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/invincibleJai/fabric8-analytics-vsc-stackreports" | ||
"url": "https://github.com/invincibleJai/fabric8-analytics-vsc" | ||
}, | ||
"homepage": "https://github.com/invincibleJai/fabric8-analytics-vsc-stackreports/blob/master/README.md", | ||
"categories": [ | ||
"Other" | ||
], | ||
"engines": { | ||
"vscode": "^0.10.7" | ||
"vscode": "^1.8.0" | ||
}, | ||
"activationEvents": [ | ||
"onCommand:extension.fabric8AnalyticsWidget" | ||
"onCommand:extension.fabric8AnalyticsWidget", | ||
"onLanguage:plaintext", | ||
"onLanguage:xml", | ||
"onLanguage:json" | ||
], | ||
"main": "./out/extension", | ||
"contributes": { | ||
|
@@ -54,20 +57,42 @@ | |
"when": "resourceLangId == json" | ||
} | ||
] | ||
} | ||
}, | ||
"configuration": { | ||
"type": "object", | ||
"title": "Example configuration", | ||
"properties": { | ||
"languageServerExample.maxNumberOfProblems": { | ||
"type": "number", | ||
"default": 100, | ||
"description": "Controls the maximum number of problems produced by the server." | ||
}, | ||
"languageServerExample.trace.server": { | ||
"type": "string", | ||
"enum": [ | ||
"off", | ||
"messages", | ||
"verbose" | ||
], | ||
"default": "off", | ||
"description": "Traces the communication between VSCode and the languageServerExample service." | ||
} | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"vscode:prepublish": "tsc -p ./", | ||
"compile": "tsc -watch -p ./", | ||
"postinstall": "node ./node_modules/vscode/bin/install", | ||
"tslint": "tslint -c tslint.json src/extension.ts" | ||
"postinstall": "node ./node_modules/vscode/bin/install" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^2.1.4", | ||
"vscode": "^1.0.0", | ||
"@types/node": "*" | ||
"@types/mocha": "^2.2.33", | ||
"@types/node": "^6.0.52", | ||
"typescript": "^2.1.5", | ||
"vscode": "^1.0.3" | ||
}, | ||
"dependencies": { | ||
"request": "2.79.0" | ||
"request": "2.79.0", | ||
"vscode-languageclient": "^3.3.0" | ||
} | ||
} |
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.