Last active
June 16, 2021 19:12
-
-
Save juanjunger/19997cf93be8f0dca1bcb1af51f54fb3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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