This commit is contained in:
David Chen
2026-03-14 20:14:33 +08:00
committed by GitHub
parent ab91804be1
commit 05c17f6b5d
16 changed files with 3177 additions and 0 deletions

7
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"recommendations": [
"eeyore.yapf",
"ms-python.isort",
"ms-python.python"
]
}

14
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"[python]": {
"editor.defaultFormatter": "eeyore.yapf"
},
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.formatOnSave": true,
"python.analysis.typeCheckingMode": "standard",
"cSpell.words": [
"backtest",
"crossunder"
]
}