将make clean
插件添加到jest
时,出现以下堆栈错误:
.eslintrc.js
TypeError: Cannot read property 'meta' of undefined
CLI创建新的react native项目react-native
./node_modules/.bin/eslint --init
添加到jest
的插件数组中.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: {}
};
答案 0 :(得分:0)
这是22.6至22.6.2中的一个临时问题。现在已在今天发布的22.6.3中修复。只需更新软件包即可。