ESLint 报错 error Unexpected console statement no-console

bug随记

遵守ESLint,在项目中使用console后,yarn build报错,如下图。
ESLint 报错 error Unexpected console statement no-console_第1张图片

是不是觉得很不舒服,下面简单配置即可解决。
在package.json中的eslintConfig:{} 中的 “rules”:{},增加一行代码: “no-console”:“off”
ESLint 报错 error Unexpected console statement no-console_第2张图片

你可能感兴趣的:(vue,js,bug)