Glavin001/tslint-clean-code
在 GitHub 查看Newspaper rule does not catch functions implemented above and used within a class
Open
#23 创建于 2017年11月25日
bughelp wanted
仓库指标
- Star
- (175 star)
- PR 合并指标
- (30 天内没有已合并 PR)
描述
Example:
function doStuff() {};
class StuffDoer {
myMethod() {
doStuff();
}
}
Desired:
class StuffDoer {
myMethod() {
doStuff();
}
}
function doStuff() {};