Skip to content

Instantly share code, notes, and snippets.

@austintackaberry
Created June 25, 2020 07:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save austintackaberry/7faa14bb2a55a94e7e8fbe703a1f7c82 to your computer and use it in GitHub Desktop.
Save austintackaberry/7faa14bb2a55a94e7e8fbe703a1f7c82 to your computer and use it in GitHub Desktop.
vscode settings.json
// Place your settings in this file to overwrite the default settings
{
"go.lintOnSave": "workspace",
"go.vetOnSave": "workspace",
"go.buildFlags": [],
"go.coverOnSave": false,
"go.useCodeSnippetsOnFunctionSuggest": false,
"go.gopath": "/Users/austintackaberry/gocode",
"go.formatTool": "goreturns",
"javascript.validate.enable": false,
"editor.fontSize": 14,
"window.zoomLevel": 1,
"flow.useLSP": false,
"typescript.validate.enable": false,
"typescript.check.npmIsInstalled": false,
"flow.lazyMode": "",
"editor.cursorBlinking": "phase",
"editor.tabSize": 2,
"editor.roundedSelection": true,
"editor.glyphMargin": true,
"editor.renderIndentGuides": true,
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.scrollBeyondLastLine": false,
"editor.minimap.enabled": false,
"files.exclude": {
".fusion": true,
".gen": true,
".venv": true,
".vscode": true,
"**/__pycache__": true,
"**/_build": true,
"**/.DS_Store": true,
"**/.git": true,
"**/*.coverprofile": true,
"**/*.pyc": true,
"**/*.test": true,
"**/coverage.html": true,
"**/vendor": true,
"debian": true,
"env": true,
"env_docs": true,
"go-build/.go": true,
"Godeps/_workspace": true,
"udeploy": true
},
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"go.autocompleteUnimportedPackages": true,
"go.lintTool": "gometalinter",
"go.lintFlags": [
"--fast",
"--enable=errcheck"
],
"go.vetFlags": [
"-printfuncs=wrapf,statusf,warnf,infof,debugf,noerrorf,equalf,newexiterrorf,containsf,truef,falsef,equalf,emptyf,failf"
],
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.lintOnSave": true,
"[python]": {
"editor.tabSize": 4
},
"window.titleBarStyle": "custom",
//"python.formatting.provider": "yapf",
"[cpp]": {
"editor.quickSuggestions": false
},
"[c]": {
"editor.quickSuggestions": false
},
// https://github.com/Microsoft/vscode/issues/23991
"keyboard.dispatch": "keyCode",
"telemetry.enableTelemetry": false,
"breadcrumbs.enabled": true,
"editor.acceptSuggestionOnCommitCharacter": false,
"workbench.editor.enablePreview": false,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment