Skip to content

Instantly share code, notes, and snippets.

@colek42
Created August 3, 2016 13:29
Show Gist options
  • Save colek42/dea27c73aa9bb51e186f2e4f69494362 to your computer and use it in GitHub Desktop.
Save colek42/dea27c73aa9bb51e186f2e4f69494362 to your computer and use it in GitHub Desktop.
{
"editor.fontSize": 14,
"go.gopath": "/home/cole/go",
"go.vetOnSave": true,
"go.formatTool": "gofmt",
"go.useCodeSnippetsOnFunctionSuggest": true,
"go.formatOnSave": true,
"eslint.enable": true,
"eslint.enableAutofixOnSave": true,
"eslint.options": {
"rules": {
"comma-dangle": [1, "never"],
"eol-last": [2, "unix"],
"eqeqeq": [2, "allow-null"],
"no-unused-vars": 1,
"no-cond-assign": 0
}
},
"beautify.onSave": true,
"beautify.JSfiles": [
"js",
"json",
"jsbeautifyrc",
"jshintrc"
],
"editor.formatOnType": true,
"editor.fontFamily": "Fira Code",
"files.trimTrailingWhitespace": true,
"files.autoSave": "onFocusChange",
"editor.rulers": [80, 120],
"telemetry.enableTelemetry": false,
"telemetry.enableCrashReporter": false,
"files.eol": "\n",
"files.insertFinalNewline": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment