PyZipline/.vscode/settings.json
cswimr 1a6baa4ee4
Some checks failed
Actions / Build Documentation (MkDocs) (push) Failing after 8s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 10s
Actions / Build (push) Successful in 12s
chore: bunch of devcontainer and devops stuff
2025-01-29 11:39:23 +00:00

22 lines
569 B
JSON

{
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.formatOnSave": true,
"files.exclude": {
"**/.git": true,
"**/__pycache__": true,
"**/.ruff_cache": true,
"**/.mypy_cache": true,
"**/*.egg-info": true,
}
}