i know how i can increasing package index depth for improving other packages intellisense in vscode but i don’t know how increse intellisense depth for my own project in vscode
for improving other packages intellisense i go to the settings.json file for current project and add this for :
"python.analysis.packageIndexDepths": [
{
"name": "third_party_package_name_1", // The name of the third party package that I intend to improve its performance by increasing the depth of the index
"depth": 5 // index depth for improving intellisense
},{
"name": "third_party_package_name_1",
"depth": 5
}
]
i try to write my project folder name instead of package_name but didn’t work, but when i write name of third party packages it’s work perfectly
amir2000 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.