crypto_quant/.vscode/settings.json

54 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2025-10-20 10:37:41 +00:00
{
"python.analysis.autoImportCompletions": true,
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoSearchPaths": true,
"python.analysis.diagnosticMode": "workspace",
"python.analysis.stubPath": "./typings",
"python.analysis.extraPaths": [
"./core",
"./utils"
],
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"editor.suggestOnTriggerCharacters": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.tabCompletion": "on",
"editor.wordBasedSuggestions": "matchingDocuments",
"editor.parameterHints.enabled": true,
"editor.hover.enabled": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.formatting.provider": "black",
"python.analysis.completeFunctionParens": true,
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.inlayHints.pytestParameters": true,
"files.associations": {
"*.py": "python"
},
"python.analysis.indexing": true,
"python.terminal.activateEnvironment": true,
"python.terminal.activateEnvInCurrentTerminal": true,
"python.analysis.packageIndexDepths": [
{
"name": "pandas",
"depth": 2
},
{
"name": "numpy",
"depth": 2
},
{
"name": "requests",
"depth": 2
}
]
}