Skip to content

Instantly share code, notes, and snippets.

@TheTrunk
Created February 13, 2021 04:16
Show Gist options
  • Save TheTrunk/eebaabc0dc6d524dffc1b3ad5a4a9b7a to your computer and use it in GitHub Desktop.
Save TheTrunk/eebaabc0dc6d524dffc1b3ad5a4a9b7a to your computer and use it in GitHub Desktop.
vscode settings
{
"git.confirmSync": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"search.useIgnoreFiles": true,
"workbench.iconTheme": "material-icon-theme",
"git.enableCommitSigning": true,
"vetur.format.defaultFormatter.js": "vscode-typescript",
"vetur.format.defaultFormatter.html": "js-beautify-html",
"vetur.experimental.templateInterpolationService": false,
"javascript.format.insertSpaceBeforeFunctionParenthesis": false,
"eslint.validate": [
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
},
{
"language": "javascript",
"autoFix": true
}
],
"editor.tabSize": 2,
"git.autofetch": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment