Skip to content

Instantly share code, notes, and snippets.

@bharathmuppa
Created August 19, 2019 22:53
Show Gist options
  • Select an option

  • Save bharathmuppa/963a78c38ce1e32c59ea439c13916174 to your computer and use it in GitHub Desktop.

Select an option

Save bharathmuppa/963a78c38ce1e32c59ea439c13916174 to your computer and use it in GitHub Desktop.
VSCode setting while using eslint extension
{
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
{
"language": "typescript",
"autoFix": true
}
],
"editor.rulers": [
120
],
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false,
},
"[typescript]": {
"editor.formatOnSave": false,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment