Reputation: 407
I would like to use type annotation only for some functions, is it possible to turn off "Missing type annotation for..." error in Flow?
Upvotes: 1
Views: 125
Reputation: 1876
You can disable a single line by adding // $FlowFixMe
, that will ignore the next line
Upvotes: 2