Glavin001/tslint-clean-code

Newspaper rule does not catch functions implemented above and used within a class

Open

#23 创建于 2017年11月25日

在 GitHub 查看
 (0 评论) (0 反应) (0 负责人)TypeScript (15 fork)github user discovery
bughelp wanted

仓库指标

Star
 (175 star)
PR 合并指标
 (30 天内没有已合并 PR)

描述

Example:

function doStuff() {};

class StuffDoer {
  myMethod() {
    doStuff();
  }
}

Desired:

class StuffDoer {
  myMethod() {
    doStuff();
  }
}

function doStuff() {};

贡献者指南