Last active
April 15, 2019 19:33
-
-
Save josemarluedke/ae71db8c4e96b90f1b453142925dcd45 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.tabSize": 2, | |
"editor.formatOnSave": true, | |
"explorer.confirmDragAndDrop": false, | |
"[handlebars]": { | |
"editor.formatOnSave": false | |
}, | |
"[graphql]": { | |
"editor.formatOnSave": false | |
}, | |
"[javascript]": { | |
"editor.formatOnSave": false | |
}, | |
"[typescript]": { | |
"editor.formatOnSave": false | |
}, | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/*.pyc": true, | |
"**/tmp": true, | |
"**/node_modules/**": true | |
}, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/**": true, | |
"**/bower_components": true, | |
"**/deps": true, | |
"**/dist": true, | |
"**/_build": true, | |
"**/tmp": true, | |
"**/gradle": true, | |
"**/build": true, | |
"**/bin": true, | |
"**/*.har": true | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/deps": true, | |
"**/_build": true, | |
"**/.git": true, | |
"**/tmp": true, | |
"**/dist": true, | |
"**/gradle": true, | |
"**/build": true, | |
"**/bin": true | |
}, | |
"breadcrumbs.enabled": true, | |
"scss.validate": false, | |
"eslint.packageManager": "yarn", | |
"eslint.alwaysShowStatus": true, | |
"eslint.autoFixOnSave": true, | |
"eslint.validate": [ | |
"javascript", | |
{ | |
"language": "typescript", | |
"autoFix": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment