如何设置 standardjs 以使用流?

How to setup standardjs to work with flow?

我正在使用 standardjs.com ("standard": "10.0.3") 和流量 ("flow-bin": "0.54.1")

我需要确保 standardjs 将流注释示例识别为有效代码:

export const find = (query: string):string => `${apiUrl}find?q=${query}&APPID=${apiKey}`

目前我收到错误:

 Parsing error: Unexpected token :

我试过使用这个包:

"standard-flow":"1.0.0"

没有成功。

我想知道如何正确设置 standardjs 以使用 flow。

我能够使用两个不同的依赖项解决这个问题:

"eslint-config-standard":"10.2.1",
"eslint-config-standard-flow": "1.0.1"

并配置标准广告:

"standard": {
    "env": [
      "jest"
    ],
    "globals": [
      "fetch",
      "test",
      "expect"
    ],
    "ignore":[
      "flow-typed"
    ],
    "plugins": [
      "flowtype"
    ],
    "parser": "babel-eslint"
  },