Skip to content

Commit a0b4a54

Browse files
authored
Fix the inconsistent single/double quotes (#12)
1 parent 12a287a commit a0b4a54

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.clang-format

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
BasedOnStyle: LLVM
22
# Objects like {a: 0}, not { a : 0 }.
33
SpacesInContainerLiterals: false
4+
JavaScriptQuotes: Single

src/extension.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class ClangdLanguageClient extends vscodelc.LanguageClient {
2424
// prompt up the failure to users.
2525
logFailedRequest(rpcReply: vscodelc.RPCMessageType, error: any) {
2626
if (error instanceof vscodelc.ResponseError &&
27-
rpcReply.method === "workspace/executeCommand")
27+
rpcReply.method === 'workspace/executeCommand')
2828
vscode.window.showErrorMessage(error.message);
2929
// Call default implementation.
3030
super.logFailedRequest(rpcReply, error);
@@ -92,7 +92,7 @@ export function activate(context: vscode.ExtensionContext) {
9292
let prefix =
9393
document.getText(new vscode.Range(item.range.start, position))
9494
if (prefix)
95-
item.filterText = prefix + "_" + item.filterText;
95+
item.filterText = prefix + '_' + item.filterText;
9696
return item;
9797
})
9898
return new vscode.CompletionList(items, /*isIncomplete=*/ true);

src/semantic-highlighting.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as fs from 'fs';
2-
import * as jsonc from "jsonc-parser";
2+
import * as jsonc from 'jsonc-parser';
33
import * as path from 'path';
44
import * as vscode from 'vscode';
55
import * as vscodelc from 'vscode-languageclient';

0 commit comments

Comments
 (0)