Skip to content

Instantly share code, notes, and snippets.

@philiplambok
Created February 24, 2020 15:21
Show Gist options
  • Save philiplambok/1f46a7bb0f83140cf744fe8a47d7aa33 to your computer and use it in GitHub Desktop.
Save philiplambok/1f46a7bb0f83140cf744fe8a47d7aa33 to your computer and use it in GitHub Desktop.
{
"editor.fontFamily": "Jetbrains Mono, Dank Mono, Menlo, Monaco, 'Courier New', monospace",
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "Monokai Pro Icons",
"window.zoomLevel": -1,
"editor.tabSize": 2,
"ruby.useLanguageServer": true,
"ruby.lint": {
"ruby": true
},
"ruby.rubocop.onSave": true,
"editor.formatOnSaveTimeout": false,
"editor.formatOnSave": false,
"files.associations": {
"*.erb": "erb"
},
"[ruby]": {
"editor.defaultFormatter": "misogi.ruby-rubocop",
"editor.formatOnSave": true
},
"emmet.includeLanguages": {
"erb": "html"
},
"workbench.sideBar.location": "right",
"workbench.startupEditor": "newUntitledFile",
"prettier.disableLanguages": [
"js",
"jsx"
],
"editor.codeActionsOnSave": {
// For ESLint
"source.fixAll.eslint": true,
// For TSLint
"source.fixAll.tslint": true
},
// For Stylelint
"stylelint.autoFixOnSave": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment