Created
July 13, 2018 18:03
-
-
Save gabrielgodoy-zz/8f85bea087997952ba62dbb2bb4596d8 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
```js | |
// Place your settings in this file to overwrite the default settings | |
{ | |
"window.zoomLevel": 0, | |
"editor.fontSize": 14, | |
"editor.tabSize": 2, | |
"editor.tabCompletion": true, | |
"editor.snippetSuggestions": "top", | |
"editor.renderWhitespace": "boundary", | |
"sync.gist": "cd6aaed4a15ba1a0eaea3f3a9bf7d1f1", | |
"sync.lastUpload": "2018-04-04T14:26:20.554Z", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.lastDownload": "2018-03-17T04:43:21.497Z", | |
"sync.forceDownload": false, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false, | |
"sync.askGistName": false, | |
"window.title": "${activeEditorLong}", | |
"explorer.confirmDragAndDrop": false, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"typescript": "jsx", | |
"typescriptreact": "jsx", | |
"xml": { | |
"attr_quotes": "single" | |
} | |
}, | |
"files.exclude": { | |
"**/.git": true, // this is a default value | |
"**/.DS_Store": true, // this is a default value | |
"**/coverage": true, | |
"**/.history": true, | |
"clover.xml": true, | |
}, | |
"emmet.triggerExpansionOnTab": true, | |
"workbench.startupEditor": "newUntitledFile", | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"prettier.eslintIntegration": true, | |
"prettier.singleQuote": true, | |
"prettier.trailingComma": "all", | |
"workbench.editor.enablePreview": false, | |
"complexityAnalysis.exclude": [ | |
"**/bower_components/**" | |
], | |
"complexityAnalysis.include": [ | |
"src/**/*.js" | |
] | |
} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment