Skip to content

Instantly share code, notes, and snippets.

@marsicdev
Created March 23, 2018 22:36
Show Gist options
  • Save marsicdev/25ead850e07ef43485344c2195532442 to your computer and use it in GitHub Desktop.
Save marsicdev/25ead850e07ef43485344c2195532442 to your computer and use it in GitHub Desktop.
My Visual Studio Code workspace settings for CRA
{
"extends": [
"react-app"
],
"rules": {
"semi": [
"error",
"never"
],
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
],
"indent": [
"error",
4
]
}
}
{
"printWidth": 100,
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
{
"recommendations": [
"streetsidesoftware.code-spell-checker",
"msjsdiag.debugger-for-chrome",
"dbaeumer.vscode-eslint",
"PKief.material-icon-theme",
"Orta.vscode-jest",
"xabikos.javascriptsnippets"
]
}
{
"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