Last active
September 15, 2022 03:58
-
-
Save chris-chris/abc596c425944620207302cce6b462f4 to your computer and use it in GitHub Desktop.
VS Code Chris settings.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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