Created
February 24, 2020 15:21
-
-
Save philiplambok/1f46a7bb0f83140cf744fe8a47d7aa33 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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