Skip to content

Commit 08080b4

Browse files
committed
lint: rename files
1 parent 40fd61e commit 08080b4

21 files changed

+31
-31
lines changed

src/commands/index.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ export class Command<T extends unknown = any> {
7575
}
7676

7777
// Must be after above definitions due to circular dependency
78-
export { bufGenerate } from "./bufGenerate";
79-
export { findBuf } from "./findBuf";
80-
export { installBuf } from "./installBuf";
81-
export { loadBufModules } from "./loadBufModules";
82-
export { openBufYaml } from "./openBufYaml";
83-
export { registerAllCommands } from "./registerAllCommands";
84-
export { restartBuf } from "./restartBuf";
85-
export { showCommands } from "./showCommands";
86-
export { showOutput } from "./showOutput";
87-
export { updateBuf } from "./updateBuf";
78+
export { bufGenerate } from "./buf-generate";
79+
export { findBuf } from "./find-buf";
80+
export { installBuf } from "./install-buf";
81+
export { loadBufModules } from "./load-buf-modules";
82+
export { openBufYaml } from "./open-buf-yaml";
83+
export { registerAllCommands } from "./register-all-commands";
84+
export { restartBuf } from "./restart-buf";
85+
export { showCommands } from "./show-commands";
86+
export { showOutput } from "./show-output";
87+
export { updateBuf } from "./update-buf";
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ import * as vscode from "vscode";
33
import { BufContext } from "../context";
44

55
import { Command } from ".";
6-
import { bufGenerate } from "./bufGenerate";
7-
import { findBuf } from "./findBuf";
8-
import { installBuf } from "./installBuf";
9-
import { loadBufModules } from "./loadBufModules";
10-
import { openBufYaml } from "./openBufYaml";
11-
import { restartBuf } from "./restartBuf";
12-
import { showCommands } from "./showCommands";
13-
import { showOutput } from "./showOutput";
14-
import { updateBuf } from "./updateBuf";
6+
import { bufGenerate } from "./buf-generate";
7+
import { findBuf } from "./find-buf";
8+
import { installBuf } from "./install-buf";
9+
import { loadBufModules } from "./load-buf-modules";
10+
import { openBufYaml } from "./open-buf-yaml";
11+
import { restartBuf } from "./restart-buf";
12+
import { showCommands } from "./show-commands";
13+
import { showOutput } from "./show-output";
14+
import { updateBuf } from "./update-buf";
1515

1616
const commands = [
1717
bufGenerate,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as vscode from "vscode";
22

33
import { Command, CommandType } from ".";
44
import { extensionId } from "../const";
5-
import { findCommand } from "./registerAllCommands";
5+
import { findCommand } from "./register-all-commands";
66

77
type BufQuickPickItem = vscode.QuickPickItem & { command?: Command };
88

0 commit comments

Comments
 (0)