|  | 
| 1 | 1 | /** | 
| 2 | 2 |  * Command registration index for Scrape-LE | 
| 3 | 3 |  */ | 
| 4 |  | -import type * as vscode from "vscode"; | 
| 5 |  | -import type { Notifier, StatusBar } from "../types"; | 
| 6 |  | -import { registerCheckUrlCommand } from "./check"; | 
| 7 |  | -import { registerCheckSelectionCommand } from "./checkSelection"; | 
| 8 |  | -import { registerHelpCommand } from "./help"; | 
| 9 |  | -import { registerSetupCommand } from "./setup"; | 
|  | 4 | +import type * as vscode from 'vscode'; | 
|  | 5 | +import type { Notifier, StatusBar } from '../types'; | 
|  | 6 | +import { registerCheckUrlCommand } from './check'; | 
|  | 7 | +import { registerCheckSelectionCommand } from './checkSelection'; | 
|  | 8 | +import { registerHelpCommand } from './help'; | 
|  | 9 | +import { registerSetupCommand } from './setup'; | 
| 10 | 10 | 
 | 
| 11 | 11 | /** | 
| 12 | 12 |  * Registers all extension commands | 
| 13 | 13 |  */ | 
| 14 | 14 | export function registerCommands( | 
| 15 |  | -  context: vscode.ExtensionContext, | 
| 16 |  | -  deps: Readonly<{ | 
| 17 |  | -    notifier: Notifier; | 
| 18 |  | -    statusBar: StatusBar; | 
| 19 |  | -  }> | 
|  | 15 | +	context: vscode.ExtensionContext, | 
|  | 16 | +	deps: Readonly<{ | 
|  | 17 | +		notifier: Notifier; | 
|  | 18 | +		statusBar: StatusBar; | 
|  | 19 | +	}>, | 
| 20 | 20 | ): void { | 
| 21 |  | -  registerCheckUrlCommand(context, deps); | 
| 22 |  | -  registerCheckSelectionCommand(context, deps); | 
| 23 |  | -  registerSetupCommand(context); | 
| 24 |  | -  registerHelpCommand(context, deps); | 
|  | 21 | +	registerCheckUrlCommand(context, deps); | 
|  | 22 | +	registerCheckSelectionCommand(context, deps); | 
|  | 23 | +	registerSetupCommand(context); | 
|  | 24 | +	registerHelpCommand(context, deps); | 
| 25 | 25 | } | 
0 commit comments