Language Specific Settings
You can configure many VS Code settings related to editing on a per-language basis. Just add a "[LANGUAGE]": {}
section to your settings.json that contains the setting specific to that language. For example:
"[javascript]": {
"editor.renderWhitespace": "all"
}