How to turn off checking python imports? #6529
-
How to turn off checking python imports? |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 2 replies
-
Zed uses pyright as the language server for Python. pyright can be configured using a I believe what you're looking for is the configuration option |
Beta Was this translation helpful? Give feedback.
-
@hovsater it works, thank you! |
Beta Was this translation helpful? Give feedback.
Zed uses pyright as the language server for Python. pyright can be configured using a
pyrightconfig.json
file in the root of your project. You can find the available configuration options that go in that file here.I believe what you're looking for is the configuration option
reportMissingImports
. It's default value istrue
but can easily be set tofalse
. See this sample configuration for inspiration.