标签: javascript eslint flowtype
如果我正在使用流程.. https://flowtype.org/
// @flow var foo = (str: string) => { return str; };
和Eslint在一起, Eslint在str: string上报告意外令牌。
str: string
有没有办法让Eslint忽略(或识别)流类型而不将它们报告为错误?
答案 0 :(得分:7)
作为Hamlet mentioned,有eslint-plugin-flowtype可以执行以下操作:
以下是Installation Instructions和Configuration docs。