54 lines
1.6 KiB
JSON
54 lines
1.6 KiB
JSON
|
|
{
|
||
|
|
"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
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|