Skip to content

Instantly share code, notes, and snippets.

@juanjunger
Last active June 16, 2021 19:12
Show Gist options
  • Save juanjunger/19997cf93be8f0dca1bcb1af51f54fb3 to your computer and use it in GitHub Desktop.
Save juanjunger/19997cf93be8f0dca1bcb1af51f54fb3 to your computer and use it in GitHub Desktop.
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Dracula",
"javascript.updateImportsOnFileMove.enabled": "always",
"files.exclude": {
"**/_pycache_": true,
"**/.git": true,
"**/.idea": true,
"**/.next": true,
"**/.nuxt": true,
"**/.svn": true,
"**/node_modules": true,
"**lock.json": true,
"**yarn.lock": true
},
"eslint.alwaysShowStatus": true,
"eslint.codeAction.showDocumentation": {
"enable": false
},
"editor.codeActionsOnSave": {
// For ESLint
"source.fixAll.eslint": false,
// For TSLint
"source.fixAll.tslint": false,
// For Stylelint
"source.fixAll.stylelint": false
},
"editor.tabSize": 2,
"[javascript]": {
"editor.formatOnSave": false
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false,
"editor.formatOnPaste": false,
"explorer.confirmDragAndDrop": true,
"prettier.singleQuote": true,
"emmet.syntaxProfiles": { "javascript": "jsx" },
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"diffEditor.ignoreTrimWhitespace": false,
"git.path": ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment