Skip to content

Instantly share code, notes, and snippets.

@shreshthmohan
Created July 27, 2023 09:01
Show Gist options
  • Save shreshthmohan/0d0b4b2bec18759c804ec08fa0d654e9 to your computer and use it in GitHub Desktop.
Save shreshthmohan/0d0b4b2bec18759c804ec08fa0d654e9 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings
{
"editor.tabSize": 2,
"javascript.updateImportsOnFileMove.enabled": "always",
"eslint.alwaysShowStatus": true,
"eslint.enable": true,
"editor.fontSize": 10,
"colorize.languages": ["javascript"],
"vetur.format.defaultFormatter.html": "prettier",
"html.format.contentUnformatted": "",
"explorer.confirmDragAndDrop": false,
"vetur.format.enable": false,
"vim.ignorecase": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"typescript.updateImportsOnFileMove.enabled": "always",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "force-expand-multiline"
},
"prettyhtml": {
"printWidth": 100,
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": false
}
},
"[python]": {
"editor.defaultFormatter": null
},
"python.formatting.provider": "black",
"liveServer.settings.donotVerifyTags": true,
"liveServer.settings.donotShowInfoMsg": true,
"editor.cursorStyle": "line",
"editor.lineNumbers": "on",
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
"editor.wordWrap": "off",
"security.workspace.trust.untrustedFiles": "open",
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"workbench.startupEditor": "none",
"editor.formatOnPaste": true,
"prettier.documentSelectors": ["**/*.hbs"],
"[handlebars]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.semanticTokenColorCustomizations": {},
"files.associations": {
"*.html": "html",
"*.html.erb": "html"
},
"emmet.triggerExpansionOnTab": true,
"emmet.extensionsPath": ["/Users/shreshthmohan/Documents/vscode/"],
"emmet.includeLanguages": {
"*.html.erb": "html",
"erb": "html"
},
"html.format.extraLiners": "",
"tailwindCSS.includeLanguages": {
"erb": "html",
"html": "html"
},
"window.zoomLevel": 1,
"editor.inlineSuggest.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment