Created
April 30, 2020 15:45
-
-
Save kkkasio/36ffb596655d4f1c1bf0eac2089fabcc to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains hidden or 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.colorTheme": "Dracula", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.activityBar.visible": true, | |
"editor.fontSize": 18, | |
"editor.lineHeight": 24, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.renderLineHighlight": "gutter", | |
"editor.tabSize": 2, | |
"editor.parameterHints.enabled": false, | |
"editor.rulers": [80, 120], | |
"editor.formatOnSave": true, | |
"eslint.packageManager": "yarn", | |
"terminal.integrated.fontSize": 14, | |
"window.zoomLevel": 0, | |
"extensions.ignoreRecommendations": true, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"gitlens.codeLens.recentChange.enabled": false, | |
"gitlens.codeLens.authors.enabled": false, | |
"gitlens.codeLens.enabled": false, | |
"breadcrumbs.enabled": true, | |
"git.enableSmartCommit": true, | |
"explorer.compactFolders": false, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"javascript.suggest.autoImports": false, | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"typescript.tsserver.log": "verbose", | |
"typescript.suggest.autoImports": false, | |
"[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" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment