我的.eslintrc
文件没有"no-console"
规则,默认情况下所有console.*()
调用都会出错。
我需要允许console.info()
,console.warn()
和console.error()
, 所以我no-console
在我的.eslintrc
:
{
"root": true,
"no-console": [
"error",
{
"allow": ["info", "warn", "error"]
}
],
"parser": "babel-eslint",
"extends": ["eslint:recommended"],
"env": {
"browser": true,
"node": true
}
}
现在 eslint 不会抱怨“信息”、“警告”、“错误”,但它也不会抱怨“日志”。
我错过了什么?