Skip to main content
2 of 21
deleted 60 characters in body
Xin
  • 37.1k
  • 18
  • 89
  • 99

Well, the new version of vscode allows you to specify differently file type for the tabSize, here is the example of my settings.json with default 4 spaces and js/json 2 spaces:

{ "editor.fontSize": 20, "editor.tabSize": 4, "[javascript]": { "editor.tabSize": 2 }, "[json]": { "editor.tabSize": 2 } } 
Xin
  • 37.1k
  • 18
  • 89
  • 99