Skip to content

Instantly share code, notes, and snippets.

@chris-chris
Last active September 15, 2022 03:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chris-chris/abc596c425944620207302cce6b462f4 to your computer and use it in GitHub Desktop.
Save chris-chris/abc596c425944620207302cce6b462f4 to your computer and use it in GitHub Desktop.
VS Code Chris settings.json
{
"debug.javascript.autoAttachFilter": "smart",
"files.associations": {
"*.py": "python"
},
"editor.formatOnSave": true,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"python.testing.pytestEnabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": ["javascript"],
"editor.inlineSuggest.enabled": true,
"gitlens.hovers.currentLine.over": "line",
"python.formatting.blackArgs": [
"--line-length 120"
],
"window.zoomLevel": 1,
"python.experiments.optOutFrom": [
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment