eslint中添加flow 报错 "Cannot read property 'type' of undefined" 解决方法

配置

安装 eslint-plugin-flowtype

npm install eslint --save-dev
npm install babel-eslint --save-dev
npm install eslint-plugin-flowtype --save-dev

配置.eslintrc

{
  "parser": "babel-eslint",
  "plugins": [
    "flowtype"
  ],
  "rules": {
      ....
  }

“Cannot read property ‘type’ of undefined” 解决方法

经过测试用以下版本解决:

"babel-core": "6.26.0", // 目前babel7还再测试,用6更稳定
"eslint": "4.13.0", // 官方也指定这个版本不会报这个错
"eslint-plugin-flowtype": "^2.49.3", // 这个可以是最新版
    原文作者:mytac
    原文地址: https://www.jianshu.com/p/12b6b9be9b40
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞