我遵循本指南
https://blog.echobind.com/integrating-prettier-eslint-airbnb-style-guide-in-vscode-47f07b5d7d6a
在我的项目中设置漂亮的eslint,但是某种程度上没有控制台的规则不起作用,当我使用console.log时,eslint仍然会发出警告,这是怎么回事?
{
"extends": ["airbnb", "prettier"],
"plugins": ["prettier"],
"rules": {
"prettier/prettier": ["error"],
"no-console": 0
}
}
我在vscode中安装了大礼包和漂亮的
答案 0 :(得分:0)
您必须使用
no-console: "error"
并在以下自定义允许范围内
no-console: ["error", { allow: ["warn", "error"] }]