在react项目中配置Eslint
在package.json文件中进行如下配置
"eslintConfig": {
"extends": "react-app",
"rules":{
"no-console":1
}
},
比如这个,配置了不让输出,否则会warning
eslint规则(no-console的值):
"off" 或者 0:关闭规则。
"warn" 或者 1:打开规则,并且作为一个警告(不影响exit code)。
"error" 或者 2:打开规则,并且作为一个错误(exit code将会是1)。