Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix event

+4 -11
+4 -11
src/index.ts
··· 112 112 file: filename, 113 113 diagnostics: [ 114 114 { 115 - source: 'gql-test', 116 - relatedInformation: [ 117 - { 118 - category: 0, 119 - code: 4242, 120 - sourceFile: source, 121 - start: node.getStart(), 122 - length: node.getEnd() - node.getStart(), 123 - messageText: 'Shit is fucked', 124 - }, 125 - ], 115 + start: { line: 0, offset: 0 }, 116 + end: { line: 5, offset: 0 }, 117 + text: 'Shit is fucked', 118 + category: 'warning', 126 119 }, 127 120 ], 128 121 }, 'suggestionDiag');