diff --git a/.vscode/settings.json b/.vscode/settings.json index 1c7e639..8665f30 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,25 @@ // Place your settings in this file to overwrite default and user settings. { "typescript.tsdk": "node_modules/typescript/lib", - "tslint.configFile": "tslint.test.json" + "tslint.configFile": "tslint.test.json", + + // Set the default + "editor.formatOnSave": false, + + // Enable per-language + "[html]": { + "editor.formatOnSave": true + }, + + "[json]": { + "editor.formatOnSave": true + }, + + "[javascript]": { + "editor.formatOnSave": true + }, + + "[typescript]": { + "editor.formatOnSave": true + } }