If you want the best VSCode developer experience w...
# resources
n
If you want the best VSCode developer experience with Kedro, update your settings with the following:
Copy code
"python.analysis.packageIndexDepths": [
    {
      "name" : "kedro",
      "depth": 3},
    {,
     ...
]
This will enable auto-import, auto-completion with Kedro. https://github.com/kedro-org/kedro/discussions/4064
👍 3
🥳 1
^ This is the result of a unfortunate default with Pylance, which only index the top level module. There are few exceptions such as
fastapi
,
matplotlib
but most libraries don't have this privilege.