Created
October 13, 2017 15:23
-
-
Save nicolasblanco/2cd000c924d02237600f0432044fb79e 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
{ | |
"window.zoomLevel": 0, | |
"editor.fontSize": 16, | |
"editor.tabSize": 2, | |
"window.openFilesInNewWindow": "off", | |
"files.insertFinalNewline": true, | |
"ruby.lint": { | |
"rubocop": true, | |
"ruby": true | |
}, | |
"search.exclude": { | |
"**/.git": true, | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/tmp": true, | |
"**/log": true | |
}, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/node_modules/**": true, | |
"**/bower_components/**": true, | |
"**/tmp/**": true, | |
"**/log/**": true | |
}, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/.DS_Store": true, | |
"**/tmp": true | |
}, | |
"editor.tabCompletion": true, | |
"editor.quickSuggestions": false, | |
"workbench.iconTheme": "vs-seti", | |
"editor.dragAndDrop": true, | |
"blankLine.languageIds": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact", | |
"json", | |
"css", | |
"scss", | |
"ruby" | |
], | |
"editor.renderWhitespace": "boundary", | |
"typescript.check.tscVersion": false, | |
"files.associations": { | |
"*.slime": "slim", | |
"*.build": "dockerfile", | |
"*.release": "dockerfile" | |
}, | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"workbench.fontAliasing": "antialiased" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment