11// Place your settings in this file to overwrite default and user settings.
22{
33 "files.exclude" : {
4- "out" : false // set this to true to hide the "out" folder with the compiled JS files
4+ "out" : false , // set this to true to hide the "out" folder with the compiled JS files
5+ "dist" : false // set this to true to hide the "dist" folder with the compiled JS files
56 },
67 "search.exclude" : {
7- "out" : true // set this to false to include "out" folder in search results
8+ "out" : true , // set this to false to include "out" folder in search results
9+ "dist" : true // set this to false to include "dist" folder in search results
810 },
911 // Turn off tsc task auto detection since we have the necessary tasks as npm scripts
1012 "typescript.tsc.autoDetect" : " off" ,
1113 "editor.formatOnSave" : true ,
1214 "editor.detectIndentation" : false ,
13- "[typescript]" : {
14- "editor.defaultFormatter" : " vscode.typescript-language-features"
15- },
16- "cSpell.words" : [
17- " nugetpackagemanagergui"
18- ],
15+ "cSpell.words" : [" nugetpackagemanagergui" ],
1916 "mochaExplorer.require" : " ts-node/register" ,
2017 "mochaExplorer.files" : " src/test/**/**.test.ts" ,
21- "mochaExplorer.ui" : " tdd"
22- }
18+ "mochaExplorer.ui" : " tdd" ,
19+ "[html]" : {
20+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
21+ "editor.codeActionsOnSave" : {
22+ "source.fixAll.eslint" : " always"
23+ },
24+ "editor.formatOnSave" : false
25+ },
26+ "[html][typescript]" : {
27+ "editor.codeActionsOnSave" : {
28+ "source.fixAll.eslint" : " explicit"
29+ }
30+ }
31+ }
0 commit comments