Skip to content

Commit

Permalink
Merge pull request #2 from adamvoss/typescriptCompliationErrors
Browse files Browse the repository at this point in the history
Fix TypeScript compliation errors
  • Loading branch information
adamvoss authored Jun 30, 2017
2 parents d6b4782 + f4ca825 commit a3b125c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
out
node_modules
node_modules
npm-debug.log
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## Unreleased
- Update upstream language service dependencies

## 0.0.2
- **Format Document** now works when there are multiple documents in the file. Multiple documents in a single file is still generally unsupported.

Expand Down
2 changes: 1 addition & 1 deletion server/src/yamlServerMain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ connection.onInitialize((params: InitializeParams): InitializeResult => {
// Tell the client that the server works in FULL text document sync mode
textDocumentSync: documents.syncKind,
// Disabled because too JSON centric
completionProvider: false,
completionProvider: { resolveProvider: false },
hoverProvider: true,
documentSymbolProvider: true,
documentFormattingProvider: false
Expand Down
2 changes: 1 addition & 1 deletion server/vscode-yaml-languageservice

0 comments on commit a3b125c

Please sign in to comment.