Skip to content

Commit a0c9b8b

Browse files
committed
Linting v11.0.1
1 parent d580e2b commit a0c9b8b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/git/extension.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,9 @@ export class Extension {
237237
const editor = getActiveTextEditor();
238238

239239
if (!validEditor(editor)) {
240-
errorMessage("Unable to blame current line. Active view is not a file on disk.");
240+
errorMessage(
241+
"Unable to blame current line. Active view is not a file on disk.",
242+
);
241243
return;
242244
}
243245

@@ -258,7 +260,9 @@ export class Extension {
258260
);
259261

260262
if (!line) {
261-
errorMessage("Unable to blame current line. Unable to get blame information for line.");
263+
errorMessage(
264+
"Unable to blame current line. Unable to get blame information for line.",
265+
);
262266
}
263267

264268
return line;

0 commit comments

Comments
 (0)