Skip to content

Commit 3a29ff8

Browse files
authored
fix(eslint): rename ctx variable to context (#170)
1 parent 00a3b78 commit 3a29ff8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ async function main(): Promise<void> {
267267
[
268268
"import * as sourcegraph from 'sourcegraph'",
269269
'',
270-
'export function activate(ctx: sourcegraph.ExtensionContext): void {',
271-
' ctx.subscriptions.add(',
270+
'export function activate(context: sourcegraph.ExtensionContext): void {',
271+
' context.subscriptions.add(',
272272
" sourcegraph.languages.registerHoverProvider(['*'], {",
273273
' provideHover: () => ({',
274274
' contents: {',

0 commit comments

Comments
 (0)