Flow 忽略报错
2018-09-01 本文已影响29人
wlianfu
- 在 .flowconfig options 中添加
[options]
suppress_comment= \\(.\\|\n\\)*\\$FlowIgnore
- 在 js 文件中报错行添加
// $FlowIgnore: suppressing this error
- 完美解决
[options]
suppress_comment= \\(.\\|\n\\)*\\$FlowIgnore
// $FlowIgnore: suppressing this error