4

I have a folder inside a workspace and I need to overwrite some settings only for that folder. How to do that ? (probably a stupid question but I've been trying for last half hour with no success)

lukasbalaz7
  • 360
  • 2
  • 11

1 Answers1

2

You can create a .vscode/settings.json file inside that folder. These settings will overwrite your workspace settings for this folder only - cf this documentation.

Jundiaius
  • 6,214
  • 3
  • 30
  • 43
  • 3
    I've made a quick test and it doesn't work unless you define a multi-root workspace and explicitly add each subfolder to the project (it doesn't check or care if multi-root project folders are nested). – Álvaro González Jun 13 '18 at 08:09