Last active
April 27, 2018 01:43
-
-
Save coleturner/a9284f60b15110028cb8ce0653b71c1c to your computer and use it in GitHub Desktop.
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
// Moves the menu bar to the right, moving code to the left window boundary | |
"workbench.sideBar.location": "right", | |
// Install prettier and run on save | |
"editor.formatOnSave": true, | |
// Drag and drop can get annoying after a while, but now I move things accidentally so ¯\_(ツ)_/¯ | |
"explorer.confirmDragAndDrop": false, | |
// Disable JavaScript validate, prefer ESLint | |
"javascript.validate.enable": false, | |
// Verbose Eslint is good eslint | |
"eslint.trace.server": "verbose", | |
// Prettier + Eslint | |
"prettier.eslintIntegration": true, | |
// I forget what this does | |
"diffEditor.ignoreTrimWhitespace": true, | |
// Moves the search panel to bottom pane to make it easier to grep through source code. | |
"search.location": "panel", | |
// Handy extensions: | |
Auto-Open Markdown Preview | |
Babel JavaScript | |
Document This | |
Duplicate Action | |
ES7 React | |
ESLint | |
GitLens | |
GraphQL for VSCode | |
IntelliSense for CSS | |
Jest | |
JSON Organizer | |
Markdown All in Open | |
Markdown Preview Github Styling | |
Path IntelliSense | |
Prettier | |
Pretiffy JSON | |
Sort JSON Objects |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment