Use const where ever possible in JS ext

This commit is contained in:
Matt Bierner
2017-11-06 14:30:07 -08:00
parent 7cba0cd7ee
commit ae0519c17e
4 changed files with 59 additions and 59 deletions

View File

@@ -22,6 +22,6 @@ export function activate(context: ExtensionContext): any {
}
function configureHttpRequest() {
let httpSettings = workspace.getConfiguration('http');
const httpSettings = workspace.getConfiguration('http');
httpRequest.configure(httpSettings.get<string>('proxy', ''), httpSettings.get<boolean>('proxyStrictSSL', true));
}