File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
BasedOnStyle : LLVM
2
2
# Objects like {a: 0}, not { a : 0 }.
3
3
SpacesInContainerLiterals : false
4
+ JavaScriptQuotes : Single
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class ClangdLanguageClient extends vscodelc.LanguageClient {
24
24
// prompt up the failure to users.
25
25
logFailedRequest ( rpcReply : vscodelc . RPCMessageType , error : any ) {
26
26
if ( error instanceof vscodelc . ResponseError &&
27
- rpcReply . method === " workspace/executeCommand" )
27
+ rpcReply . method === ' workspace/executeCommand' )
28
28
vscode . window . showErrorMessage ( error . message ) ;
29
29
// Call default implementation.
30
30
super . logFailedRequest ( rpcReply , error ) ;
@@ -92,7 +92,7 @@ export function activate(context: vscode.ExtensionContext) {
92
92
let prefix =
93
93
document . getText ( new vscode . Range ( item . range . start , position ) )
94
94
if ( prefix )
95
- item . filterText = prefix + "_" + item . filterText ;
95
+ item . filterText = prefix + '_' + item . filterText ;
96
96
return item ;
97
97
} )
98
98
return new vscode . CompletionList ( items , /*isIncomplete=*/ true ) ;
Original file line number Diff line number Diff line change 1
1
import * as fs from 'fs' ;
2
- import * as jsonc from " jsonc-parser" ;
2
+ import * as jsonc from ' jsonc-parser' ;
3
3
import * as path from 'path' ;
4
4
import * as vscode from 'vscode' ;
5
5
import * as vscodelc from 'vscode-languageclient' ;
You can’t perform that action at this time.
0 commit comments