Created
October 12, 2016 18:44
-
-
Save jimbolla/82a5774e4469804265c517b363c252c5 to your computer and use it in GitHub Desktop.
VS Code
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
{ | |
// See http://go.microsoft.com/fwlink/?LinkId=827846 | |
// for the documentation about the extensions.json format | |
"recommendations": [ | |
// ESLint | |
"dbaeumer.vscode-eslint", | |
// Flow Language Support | |
"flowtype.flow-for-vscode", | |
// Latest TypeScript and Javascript Grammar | |
"ms-vscode.typescript-javascript-grammar", | |
// npm Intellisense | |
"christian-kohler.npm-intellisense", | |
//Path Intellisense | |
"christian-kohler.path-intellisense", | |
// vscode-icons | |
"robertohuertasm.vscode-icons", | |
// Material-theme | |
"zhuangtongfa.Material-theme", | |
// npm Script Runner | |
"eg2.vscode-npm-script", | |
// Debugger for Chrome | |
"msjsdiag.debugger-for-chrome" | |
] | |
} |
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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontSize": 15, | |
"editor.rulers": [120], | |
"javascript.validate.enable": false, | |
"files.autoSave": "off" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment