Created
March 23, 2018 22:36
-
-
Save marsicdev/25ead850e07ef43485344c2195532442 to your computer and use it in GitHub Desktop.
My Visual Studio Code workspace settings for CRA
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
{ | |
"extends": [ | |
"react-app" | |
], | |
"rules": { | |
"semi": [ | |
"error", | |
"never" | |
], | |
"quotes": [ | |
"error", | |
"single", | |
{ | |
"allowTemplateLiterals": true | |
} | |
], | |
"indent": [ | |
"error", | |
4 | |
] | |
} | |
} |
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
{ | |
"printWidth": 100, | |
"tabWidth": 4, | |
"semi": false, | |
"singleQuote": true | |
} |
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
{ | |
"recommendations": [ | |
"streetsidesoftware.code-spell-checker", | |
"msjsdiag.debugger-for-chrome", | |
"dbaeumer.vscode-eslint", | |
"PKief.material-icon-theme", | |
"Orta.vscode-jest", | |
"xabikos.javascriptsnippets" | |
] | |
} |
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
{ | |
"editor.formatOnPaste": true, | |
"zenMode.centerLayout": false, | |
"zenMode.hideStatusBar": false, | |
"explorer.confirmDragAndDrop": false, | |
"eslint.autoFixOnSave": true, | |
"eslint.alwaysShowStatus": true, | |
"files.autoSave": "onFocusChange", | |
"workbench.editor.showTabs": false, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "One Dark Pro Vivid", | |
"explorer.openEditors.visible": 0, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment