Skip to content

Commit

Permalink
Fix missing newline at end of package.json and update getActiveFilePa…
Browse files Browse the repository at this point in the history
…th function to remove unnecessary semicolon
  • Loading branch information
jeremytenjo committed Feb 4, 2025
1 parent b9ba7c4 commit 50f0349
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@
"vsce": "2.15.0",
"vscode-test": "^1.5.0"
}
}
}
2 changes: 1 addition & 1 deletion utils/folderFiles/getActiveFilePath.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import vscode from 'vscode'

export default function getActiveFilePath() {
return vscode.window.activeTextEditor!.document.uri.fsPath;
return vscode.window.activeTextEditor!.document.uri.fsPath
}

0 comments on commit 50f0349

Please sign in to comment.