StarRailUID/.vscode/settings.json
2025-05-18 21:14:14 +08:00

23 lines
518 B
JSON

{
"python.languageServer": "None",
"editor.formatOnSave": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
}
},
"python.autoComplete.extraPaths": [
"${workspaceFolder}/../../../../"
],
"isort.args": [
"--profile",
"black"
],
"basedpyright.analysis.extraPaths": [
"${workspaceFolder}/../../../"
],
"python.analysis.typeCheckingMode": "off",
}