如何设置standardjs以使用流?

时间:2017-09-18 14:34:32

标签: javascript standardjs

我正在使用standardjs.com(“标准”:“10.0.3”)和流量(“flow-bin”:“0.54.1”)

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

 Parsing error: Unexpected token :

目前我正在发现错误:

"standard-flow":"1.0.0"

我试图使用这个包:

import { MyComponent } from './Components/my-component/my-component.component';

没有成功。

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

1 个答案:

答案 0 :(得分:0)

我能够使用两种不同的依赖关系来解决这个问题:

"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"
  },