Skip to content

Instantly share code, notes, and snippets.

@dumpofmemory
Created July 13, 2019 12:05
Show Gist options
  • Save dumpofmemory/4c857221bfc023934be9f5ca6adfdc6d to your computer and use it in GitHub Desktop.
Save dumpofmemory/4c857221bfc023934be9f5ca6adfdc6d to your computer and use it in GitHub Desktop.
> Preferences: Open Settings (JSON) in VSCode
{
"window.zoomLevel": 0,
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"workbench.colorTheme": "Andromeda",
"workbench.startupEditor": "newUntitledFile",
"files.associations": {
"Dockerfile.*": "dockerfile"
},
"editor.tabSize": 2,
"editor.formatOnSave": false,
"[javascript]": {
"editor.formatOnSave": false,
},
"[javascriptreact]": {
"editor.formatOnSave": false,
},
"[typescript]": {
"editor.formatOnSave": false,
},
"[typescriptreact]": {
"editor.formatOnSave": false,
},
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "typescript",
"autoFix": true
},
{
"language": "typescriptreact",
"autoFix": true
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment