Skip to content

Instantly share code, notes, and snippets.

@GuilhermeLis
Last active April 8, 2020 04:35
Show Gist options
  • Save GuilhermeLis/74ee05fa71758e5be167896302290f9e to your computer and use it in GitHub Desktop.
Save GuilhermeLis/74ee05fa71758e5be167896302290f9e to your computer and use it in GitHub Desktop.
{
"editor.formatOnPaste": true,
"editor.rulers": [
80,
120
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
"eslint.packageManager": "npm",
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
}
},
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
".prettierrc": "json"
},
"editor.renderLineHighlight": "gutter",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"workbench.colorTheme": "Dracula Soft",
"editor.tabSize": 2,
"window.zoomLevel": 0,
"extensions.ignoreRecommendations": true,
"emmet.syntaxProfiles": {
"javascript": "jsx",
},
"emmet.includeLanguages": {
"javascript": "javascriptreact",
},
"javascript.updateImportsOnFileMove.enabled": "never",
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"breadcrumbs.enabled": true,
"git.enableSmartCommit": true,
"editor.parameterHints.enabled": false,
"typescript.updateImportsOnFileMove.enabled": "never",
"terminal.integrated.shell.osx": "/bin/zsh",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"typescript.tsserver.log": "verbose",
"javascript.suggest.autoImports": false,
"typescript.suggest.autoImports": false,
"workbench.activityBar.visible": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment