Skip to content

Commit

Permalink
Merge pull request fabric8-analytics#2 from invincibleJai/lsp-integra…
Browse files Browse the repository at this point in the history
…tion

implements lsp integration with extension
  • Loading branch information
arunkumars08 authored Aug 4, 2017
2 parents 9a949a3 + 7b0a640 commit 23ee6e9
Show file tree
Hide file tree
Showing 18 changed files with 1,362 additions and 17 deletions.
47 changes: 36 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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 added server/.DS_Store
Binary file not shown.
202 changes: 202 additions & 0 deletions server/collector.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions server/collector.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 23ee6e9

Please sign in to comment.