Skip to content

Instantly share code, notes, and snippets.

@brandonsueur
Created February 10, 2022 11:44
Show Gist options
  • Save brandonsueur/3111d74b67f0e3d1d0b73d1585ce19c4 to your computer and use it in GitHub Desktop.
Save brandonsueur/3111d74b67f0e3d1d0b73d1585ce19c4 to your computer and use it in GitHub Desktop.
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.bracketPairColorization.enabled": false,
// "editor.renderWhitespace": "none",
"editor.cursorSmoothCaretAnimation": true,
// langages (JavaScript, TypeScript)
"[javascript]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[typescript]": {
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[typescriptreact]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"javascript.validate.enable": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"debug.javascript.codelens.npmScripts": "never",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment