In my Angular application, I have few components which are used while testing and not included in any module.
In WebStorm, it shows me a lint error saying Component is not included in any module
, while I know that this is not included and that is the purpose.
Is there a way to disable only this lint error while keeping all others enabled?
Angular: Component 'ComponentName' is not included in a module and will not be available inside a template. Consider adding it to a NgModule declaration.
I saw this threat, where it was suggested to disable all Angular lint errors. However, i think it is not a good idea to do that just for one issue. I am looking for a way to only disable this one error.