eslint-plugin-jest给出“ ESLint堆栈跟踪:TypeError:无法读取未定义的属性'meta'”

时间:2019-05-22 17:46:46

标签: javascript jestjs eslint

make clean插件添加到jest时,出现以下堆栈错误:

.eslintrc.js

  1. 使用TypeError: Cannot read property 'meta' of undefined CLI创建新的react native项目
  2. 安装eslint并运行react-native
  3. 安装eslint-plugin-jest
  4. ./node_modules/.bin/eslint --init添加到jest的插件数组中

.eslintrc.js

.eslintrc.js

我希望eslint能够使用eslint-plugin-jest插件,但是我却得到了

module.exports = {
  env: {
    browser: true,
    es6: true
  },
  extends: ["standard", "plugin:jest/recommended"],
  globals: {
    Atomics: "readonly",
    SharedArrayBuffer: "readonly"
  },
  parserOptions: {
    ecmaFeatures: {
      jsx: true
    },
    ecmaVersion: 2018,
    sourceType: "module"
  },
  plugins: ["react", "jest"],
  rules: {}
};

1 个答案:

答案 0 :(得分:0)

这是22.6至22.6.2中的一个临时问题。现在已在今天发布的22.6.3中修复。只需更新软件包即可。