是否存在eslint规则以防止重新分配类?

时间:2019-01-22 15:34:37

标签: eslint eslintrc

我们有一些较旧的代码遵循以下模式...

{
  "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;

我尝试添加一些我认为会导致掉毛时出错的规则,但是它要么被忽略,要么我的规则设置错误。

那么需要添加什么规则来防止它滑倒?

1 个答案:

答案 0 :(得分:0)

短绒棉被挂在东西上。重新启动后,no-class-assign规则就是我想要的!如果其他人有相同的问题,请发布答案。