Created
June 7, 2018 06:12
-
-
Save renganatha10/f3339a7e9a00dcd6185d0efd964afb7e to your computer and use it in GitHub Desktop.
Vscode User Settings
This file contains 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
{ | |
"git.enableSmartCommit": true, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"editor.fontFamily": "Avenir Light, Monaco, 'Courier New', monospace", | |
"editor.fontSize": 13, | |
"eslint.enable": true, | |
"eslint.autoFixOnSave": true, | |
"editor.formatOnSave": false, | |
"[javascript]": { | |
"editor.formatOnSave": true | |
}, | |
"[css]": { | |
"editor.formatOnSave": true | |
}, | |
"[json]": { | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"editor.formatOnSave": true | |
}, | |
"[reason]" :{ | |
"editor.formatOnSave": true | |
}, | |
"prettier.eslintIntegration": true, | |
"prettier.bracketSpacing": true, | |
"prettier.semi": true, | |
"prettier.trailingComma": "es5", | |
"prettier.singleQuote": true, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"flow.enabled": true, | |
"flow.showStatus": true, | |
"flow.useNPMPackagedFlow": true, | |
"editor.minimap.enabled": false, | |
"javascript.format.enable": true, | |
"javascript.validate.enable": false, | |
"material-icon-theme.showUpdateMessage": false, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/android": true, | |
"**/ios": true | |
}, | |
"workbench.iconTheme": "material-icon-theme", | |
"window.zoomLevel": 1, | |
"workbench.colorTheme": "Monokai", | |
"reason.diagnostics.tools": [ | |
"merlin", | |
"bsb" | |
], | |
"reason.codelens.enabled": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment