Glavin001/tslint-clean-code

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

Open

#23 opened on 2017年11月25日

GitHub で見る
 (0 comments) (0 reactions) (0 assignees)TypeScript (15 forks)github user discovery
bughelp wanted

Repository metrics

Stars
 (175 stars)
PR merge metrics
 (30d に merged PR はありません)

説明

Example:

function doStuff() {};

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

Desired:

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

function doStuff() {};

コントリビューターガイド