Set explorere font size:

"window.zoomLevel": 1

Trim trailinh whitespace:

"files.trimTrailingWhitespace": true

turn off eslint:

/* eslint no-useless-escape: "off" */
  • “off” or 0 - turn the rule off
  • “warn” or 1 - turn the rule on as a warning (doesn’t affect exit code)
  • “error” or 2 - turn the rule on as an error (exit code is 1 when triggered)

Disable on one line:

const message = 'foo';
console.log(message); // eslint-disable-line no-console

// eslint-disable-next-line no-console
console.log(message);

Disable eslint rule for the rest of the file:

/* eslint-disable no-console */

Open settings dot JSON:

Open settings dot JSON by opening the settings window and clicking the little icon at the top right it has a curly narrow in it. This will open the settings dot JSON file. You can then add the above settings to the file.