这对我来说看起来是正确的,但是为什么 eslint 显示违反规则,comma-dangle
在最后一个属性“凭据”的末尾缺少尾随逗号?
dispatch({
type: LOGIN_USER,
payload: credentials
});
.eslintrc
{
"extends": "airbnb",
"globals": {
"__DEV__": true
},
"rules": {
"react/jsx-quotes": 0,
"jsx-quotes": [2, "prefer-double"]
}
}