Glavin001/tslint-clean-code
GitHub で見るNewspaper rule does not catch functions implemented above and used within a class
Open
#23 opened on 2017年11月25日
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() {};