Skip to content

Instantly share code, notes, and snippets.

@ermish
Last active August 1, 2018 04:04
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save ermish/88d0c14e1084bddbe1efd221c50077e5 to your computer and use it in GitHub Desktop.
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