Shared vs code user settings
{ | |
"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