Skip to content

Instantly share code, notes, and snippets.

@davidmwhynot
Created March 5, 2021 14:05
Show Gist options
  • Save davidmwhynot/bae41d8aa2bb43e6931ff1b44898464a to your computer and use it in GitHub Desktop.
Save davidmwhynot/bae41d8aa2bb43e6931ff1b44898464a to your computer and use it in GitHub Desktop.
recommended user settings (json)
{
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
},
"git-graph.repository.commits.mute.commitsThatAreNotAncestorsOfHead": true,
"git-graph.repository.commits.order": "topo",
"jest.autoEnable": false,
"jest.runAllTestsFirst": false,
"prettier.arrowParens": "avoid",
"prettier.singleQuote": true,
"prettier.tabWidth": 4,
"prettier.trailingComma": "none",
"prettier.useTabs": true,
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.includePackageJsonAutoImports": "on",
"typescript.preferences.quoteStyle": "single",
"typescript.suggest.completeFunctionCalls": true,
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.workspaceSymbols.scope": "currentProject"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment