Last active
August 1, 2018 04:04
-
-
Save ermish/88d0c14e1084bddbe1efd221c50077e5 to your computer and use it in GitHub Desktop.
Shared vs code user settings
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
{ | |
"window.zoomLevel": 0, | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 1200, | |
"git.confirmSync": false, | |
"workbench.iconTheme": "vscode-icons", | |
"explorer.openEditors.visible": 0, | |
"editor.matchBrackets": true, | |
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"workbench.startupEditor": "welcomePage", | |
"git.enableSmartCommit": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": false, | |
"editor.formatOnSave": false, | |
"editor.minimap.enabled": false, | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": true | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"files.associations": { | |
".eslintrc": "jsonc", | |
".stylelintrc": "jsonc", | |
".babelrc": "jsonc", | |
"pm2.json": "jsonc" | |
}, | |
"git.autofetch": true, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
//PRETTIER PLUGIN | |
"prettier.eslintIntegration": false, | |
"prettier.stylelintIntegration": true, | |
"prettier.singleQuote": true, | |
"prettier.semi": false, | |
//VETUR PLUGIN | |
"vetur.format.defaultFormatter.scss": "prettier", | |
"vetur.format.defaultFormatter.js": "prettier", | |
//for Vue eslinting | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
{ | |
"language": "vue", | |
"autoFix": true | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment