我们有一些较旧的代码遵循以下模式...
{
"name": "production",
"description": "",
"services": [
{
"type": "endpoint",
"appId": "********************",
"appPassword": "*************",
"endpoint": "intermediatorbotsample2019.azurewebsites.net/api/messages",
"name": "AzureAccountLive",
"id": "178"
}
],
"padlock": "",
"version": "2.0",
"path": "D:\\Architecture\IntermediatorBot\\production.bot",
"overrides": null
}
我想要...
class SomeClass extends Component { /* ... */ }
SomeClass = connect(
mapStateToProps,
mapDispatchToProps
)(SomeClass);
export default SomeClass;
我尝试添加一些我认为会导致掉毛时出错的规则,但是它要么被忽略,要么我的规则设置错误。
那么需要添加什么规则来防止它滑倒?
答案 0 :(得分:0)
短绒棉被挂在东西上。重新启动后,no-class-assign
规则就是我想要的!如果其他人有相同的问题,请发布答案。