Reputation: 7653
How to hide Unresolved function or method addLayers()
notification? So WebStorm would know that this method is overridden/declared in extended/child class.
Upvotes: 2
Views: 51
Reputation: 7653
Resolved: We can use @abstract
JSDoc. Also we need to turn off class-methods-use-this
rule in eslint config. Github issue for eslint.
Upvotes: 2