我有这个密码:
const subTotal = orderInfo.details.reduce((acc, cv) => acc += Number(cv.price) * Number(cv.quantity), 0);
我想为这一行禁用两种 ESLint 类型的检查,不予退还-转让和 无参数重新分配。
我试过这样做:
/* eslint-disable-next-line no-return-assign eslint-disable-next-line no-param-reassign */
const subTotal = orderInfo.details.reduce((acc, cv) => acc += Number(cv.price) * Number(cv.quantity), 0);
但是我的编辑器仍然显示 Eslint (无返回分配) Clint 错误。