Skip to content

Commit 6ab9cae

Browse files
run prettier
1 parent 09019a5 commit 6ab9cae

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ View code ownership for every file right in the status bar. You'll get the name
1111
Quick access to the owning team's config file. Clicking on the status bar item will open a popup that includes a button that opens the team's config file. See [Code Teams](https://github.com/rubyatscale/code_teams) for more information on team config files.
1212

1313
## Installation
14+
1415
[Install from Marketplace](https://marketplace.visualstudio.com/items?itemName=Gusto.code-ownership-vscode)
1516

1617
## Requirements

src/extension.ts

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,8 @@ class StatusProvider implements vscode.Disposable {
250250
this.statusBarItem.show();
251251
} else if (this.isConfigured === false) {
252252
this.statusBarItem.text = `$(info) Ownership: not configured`;
253-
this.statusBarItem.tooltip = 'This workspace is not configured for code ownership';
253+
this.statusBarItem.tooltip =
254+
'This workspace is not configured for code ownership';
254255
this.statusBarItem.show();
255256
} else {
256257
this.statusBarItem.text = `$(warning) Owner: none`;
@@ -281,9 +282,15 @@ class Worker implements vscode.Disposable {
281282
this.statusProvider.isConfigured = this.isConfigured;
282283

283284
if (!this.isConfigured) {
284-
log('info', `No code ownership binary found in workspace: ${this.workspace.name}`);
285+
log(
286+
'info',
287+
`No code ownership binary found in workspace: ${this.workspace.name}`,
288+
);
285289
} else {
286-
log('info', `Code ownership binary found in workspace: ${this.workspace.name}`);
290+
log(
291+
'info',
292+
`Code ownership binary found in workspace: ${this.workspace.name}`,
293+
);
287294
}
288295
}
289296

0 commit comments

Comments
 (0)