Is it possible to filter the Problems panel?
Hi.
Is it possible to filter the Problems panel?
I think many of these errors are to do with Vite's setup script, and I'm guessing that WebStorm doesn't – yet – properly support this.
Also, from what I can tell, the results here are not 1:1 with the project's ES Lint setup, so lint rules there won't affect this panel?
Is it possible to:
- filter the list to a particular set of errors by typing (so we see only TS6133), or
- suppress errors (so we don't see TS6133)
Thanks.
Please sign in to leave a comment.
1. no, not currently possible, please follow https://youtrack.jetbrains.com/issue/WEB-44233 for updates
2.
//@ts-ignore
is the only way to suppress Typescript compiler errors; adding a shim withvue
module defined should help with some of the errors, it's a known Vue tsserver limitation (https://youtrack.jetbrains.com/issue/WEB-33130#focus=Comments-27-3251614.0-0)