Skip to content

Instantly share code, notes, and snippets.

@yourtion
Last active February 5, 2018 10:07
Show Gist options
  • Save yourtion/30e47db30525ce0eab104a3f5bdf6bc5 to your computer and use it in GitHub Desktop.
Save yourtion/30e47db30525ce0eab104a3f5bdf6bc5 to your computer and use it in GitHub Desktop.
Settings
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Hack",
"templates.Author": "Yourtion Guo <yourtion@gmail.com>",
// Editor
"editor.tabSize": 2,
"editor.insertSpaces":true,
// "editor.formatOnPaste": true,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"files.associations": {
"*.vue": "vue",
"*.liquid": "html"
},
"eslint.options": {
"extensions": [".js",".vue"]
},
"eslint.validate": [
"javascript",
"javascriptreact",
"vue",
"vue-html"
],
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true
},
"emmet.syntaxProfiles": {
"javascript": "jsx",
"vue": "html",
"vue-html": "html"
},
"extensions.autoUpdate": true,
"editor.renderWhitespace": "boundary",
"editor.cursorBlinking": "smooth",
// Go
"go.buildOnSave": false,
"go.lintOnSave": true,
"go.vetOnSave": true,
"go.buildFlags": [],
"go.lintFlags": [],
"go.vetFlags": [],
"go.coverOnSave": false,
"go.useCodeSnippetsOnFunctionSuggest": false,
"go.formatOnSave": true,
"go.formatTool": "goreturns",
"go.goroot": "/usr/local/go/",
"go.gopath": "/Users/Yourtion/Codes/Go/GoPath",
// TSLint
"tslint.autoFixOnSave": true,
"git.confirmSync": false,
"workbench.iconTheme": "vs-seti",
"typescript.check.npmIsInstalled": false,
"java.errors.incompleteClasspath.severity": "ignore",
"extensions.ignoreRecommendations": true,
"workbench.panel.location": "bottom"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment