Skip to content

Instantly share code, notes, and snippets.

@robpataki
Last active October 10, 2022 16:29
Show Gist options
  • Save robpataki/5b90dfb468a0d3b72ade544414a04c6d to your computer and use it in GitHub Desktop.
Save robpataki/5b90dfb468a0d3b72ade544414a04c6d to your computer and use it in GitHub Desktop.
Visual Studio Code user settings
{
"eslint.run": "onSave",
"eslint.format.enable": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"*.style.ts.validate": false,
"stylelint.validate": ["css", "scss", "*.style.ts"],
"stylelint.enable": true,
"stylelint.autoFixOnSave": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"editor.renderControlCharacters": true,
"editor.scrollBeyondLastLine": false,
"explorer.confirmDelete": false,
"editor.rulers": [80],
"editor.fontSize": 13,
"workbench.startupEditor": "newUntitledFile",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.associations": {
"*.postcss": "postcss"
},
"emmet.excludeLanguages": ["markdown"],
"emmet.includeLanguages": {
"nunjucks": "html",
"njk": "html",
"md": "mdx"
},
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 120,
"editor.formatOnPaste": false,
"beautify.config": "",
"editor.formatOnSave": true,
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.fixAll.stylelint": true
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.shell.osx": "/bin/zsh",
"security.workspace.trust.untrustedFiles": "open",
"workbench.colorTheme": "Tomorrow Night Blue",
"[json]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"keyboard.touchbar.enabled": false,
"editor.accessibilitySupport": "off",
"git.ignoreMissingGitWarning": true,
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
@robpataki
Copy link
Author

File location: $HOME/Library/Application Support/Code/User/settings.json
Docs: https://code.visualstudio.com/docs/getstarted/settings

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment