Skip to content

Instantly share code, notes, and snippets.

@ChrisFrontDev
Created April 29, 2020 05:09
Show Gist options
  • Save ChrisFrontDev/89b567f5d791bff2dab3cc98c6aea6c9 to your computer and use it in GitHub Desktop.
Save ChrisFrontDev/89b567f5d791bff2dab3cc98c6aea6c9 to your computer and use it in GitHub Desktop.
{
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Dracula",
"git.autofetch": true,
"javascript.updateImportsOnFileMove.enabled": "never",
"terminal.integrated.fontSize": 14,
"editor.tabSize": 2,
"editor.fontSize": 15,
"editor.lineHeight": 24,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"extensions.ignoreRecommendations": true,
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": true,
// run ESLint on save
// "editor.codeActionsOnSave": {
// "source.fixAll.eslint": true
// },
// format the code on save
"editor.formatOnSave": true,
"[javascript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[javascriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[typescript]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[typescriptreact]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"editor.rulers": [
80,
120
],
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"vsicons.dontShowNewVersionMessage": true,
"window.zoomLevel": -1,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment