Last active
November 16, 2017 11:18
-
-
Save jamesmcallister/237c487e5700171d156bdc2f66fb5ada 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
// to list extentions | |
// $ code --list-extensions | |
EditorConfig.EditorConfig | |
TimonVS.ReactSnippetsStandard | |
bialikover.theme-seti | |
chenxsan.vscode-standard-format | |
hoovercj.vscode-ghc-mod | |
justusadam.language-haskell | |
octref.tachyons | |
shinnn.standard | |
.... | |
PeterJausovec.vscode-docker | |
TimonVS.ReactSnippetsStandard | |
jpoissonnier.vscode-styled-components | |
shinnn.standard |
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.fontFamily": "Fira Code", | |
"editor.fontSize": 14, | |
"editor.fontLigatures": true, | |
"editor.renderIndentGuides": true, | |
"editor.formatOnSave": true, | |
"files.autoSave": "onFocusChange", | |
"emmet.triggerExpansionOnTab": true, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"files.associations": { | |
"*.js": "javascriptreact" | |
}, | |
"javascript.validate.enable": false, | |
"eslint.enable": true, | |
"eslint.trace.server": "on", | |
"eslint.options": { | |
"fix": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
CoenraadS.bracket-pair-colorizer
WallabyJs.quokka-vscode
dbaeumer.vscode-eslint
jpoissonnier.vscode-styled-components
nonylene.dark-molokai-theme
{
"editor.fontFamily": "Fira Code",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"editor.renderIndentGuides": true,
// "javascript.validate.enable": false,
// "typescript.npm": "",
"files.autoSave": "onFocusChange",
"editor.wordWrap": "on",
"window.zoomLevel": -1,
"editor.tabSize": 2,
"workbench.iconTheme": "vs-seti",
"editor.formatOnSave": true,
// "emmet.includeLanguages": {
// "javascript": "css"
// },
"search.exclude": {
"**/node_modules/": true
},
// "extensions.autoUpdate": false,
"eslint.enable": true,
"eslint.autoFixOnSave": true,
// "workbench.startupEditor": "newUntitledFile",
"[makefile]": {
"editor.insertSpaces": false
},
"workbench.colorTheme": "Dark (Molokai)"
}