-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing newline at end of package.json and update getActiveFilePa…
…th function to remove unnecessary semicolon
- Loading branch information
1 parent
b9ba7c4
commit 50f0349
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -105,4 +105,4 @@ | |
"vsce": "2.15.0", | ||
"vscode-test": "^1.5.0" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |