sitnarf
sitnarf

Reputation: 407

Is it possible to turn off required flow annotation?

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

Answers (1)

Damian Peralta
Damian Peralta

Reputation: 1876

You can disable a single line by adding // $FlowFixMe, that will ignore the next line

Upvotes: 2

Related Questions