Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Pinkney <[email protected]>
  • Loading branch information
JPinkney committed Nov 12, 2020
1 parent c9a921d commit 6c5b1b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/languageservice/yamlLanguageService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { YAMLHover } from './services/yamlHover';
import { YAMLValidation } from './services/yamlValidation';
import { YAMLFormatter } from './services/yamlFormatter';
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { getLanguageService as getJSONLanguageService, JSONWorkerContribution, JSONDocument, DefinitionLink } from 'vscode-json-languageservice';
import { JSONWorkerContribution, JSONDocument, DefinitionLink } from 'vscode-json-languageservice';
import { findLinks } from './services/yamlLinks';

export interface LanguageSettings {
Expand Down
2 changes: 1 addition & 1 deletion test/findLinks.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ suite('FindDefintion Tests', () => {
character: 29,
},
});
assert.deepEqual(results[0].target, "file://~/Desktop/vscode-k8s/test.yaml#3,5");
assert.deepEqual(results[0].target, 'file://~/Desktop/vscode-k8s/test.yaml#3,5');
})
.then(done, done);
});
Expand Down

0 comments on commit 6c5b1b3

Please sign in to comment.