Skip to content

Instantly share code, notes, and snippets.

@jt-kl
Last active May 15, 2024 13:35
Show Gist options
  • Save jt-kl/43326bd0fd826dec50805f8c6922eec3 to your computer and use it in GitHub Desktop.
Save jt-kl/43326bd0fd826dec50805f8c6922eec3 to your computer and use it in GitHub Desktop.
VSCode Settings Config
{
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features",
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.indentSize": 2
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features",
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.indentSize": 2
},
"[markdown]": {
"editor.rulers": [
69
]
},
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.rulers": [
79,
119
]
},
"[shellscript]": {
"editor.rulers": [
69
],
"files.eol": "\n"
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[yaml]": {
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"editor.codeActionsOnSave": {
"source.fixAll": "never"
},
"editor.defaultFormatter": null,
"editor.fontSize": 12,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.minimap.maxColumn": 60,
"editor.tabSize": 4,
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true,
"**/Thumbs.db": true
},
"files.watcherExclude": {
"**/.env/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/.hg/store/**": true,
"**/node_modules/*/**": true
},
"python.analysis.extraPaths": [
"tests"
],
"python.defaultInterpreterPath": ".venv/bin/python3",
"python.terminal.activateEnvironment": false,
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"python.testing.pytestArgs": [],
"python.testing.pytestEnabled": true,
"python.testing.pytestPath": ".venv/bin/pytest",
"ruff.organizeImports": true,
"yaml.format.printWidth": 120
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment