Skip to content

Instantly share code, notes, and snippets.

@ajhyndman
Last active October 15, 2023 04:26
Show Gist options
  • Select an option

  • Save ajhyndman/0f6a8aab9d61707878985408ee9784a4 to your computer and use it in GitHub Desktop.

Select an option

Save ajhyndman/0f6a8aab9d61707878985408ee9784a4 to your computer and use it in GitHub Desktop.
{
// Place your settings in this file to overwrite the default settings
"[javascript]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"[python]": {
"editor.tabSize": 4
},
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"editor.formatOnSave": true
},
"[graphql]": {
"editor.formatOnSave": true
},
"[starlark]": {
"editor.tabSize": 4
},
"[markdown]": {
"editor.wordWrap": "wordWrapColumn",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
}
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"yarn.lock": true
},
"search.useIgnoreFiles": true,
"dart.debugExternalLibraries": true,
"dart.debugSdkLibraries": true,
"editor.fontFamily": "Hasklig",
"editor.fontSize": 13,
"editor.minimap.enabled": false,
"editor.renderFinalNewline": "on",
"editor.renderWhitespace": "all",
"editor.rulers": [80, 100],
"editor.tabSize": 2,
"editor.wordWrap": "on",
"files.associations": {
".env": "shellscript",
".env.example": "shellscript"
},
"files.trimTrailingWhitespace": true,
"flow.useNPMPackagedFlow": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,
"git.mergeEditor": false,
"javascript.validate.enable": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"importSorter.generalConfiguration.sortOnBeforeSave": false,
"importSorter.importStringConfiguration.trailingComma": "multiLine",
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"workbench.colorTheme": "Monokai Pro (Filter Machine)",
"workbench.startupEditor": "none",
"workbench.iconTheme": "Monokai Pro (Filter Machine) Icons",
"workbench.editorAssociations": {
"*.puz": "hexEditor.hexedit"
},
"security.workspace.trust.untrustedFiles": "open",
"diffEditor.ignoreTrimWhitespace": false,
"githubPullRequests.pullBranch": "never",
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment