Glavin001/tslint-clean-code
Ver no GitHubNewspaper rule does not catch functions implemented above and used within a class
Open
#23 aberto em 25 de nov. de 2017
bughelp wanted
Métricas do repositório
- Stars
- (175 stars)
- Métricas de merge de PR
- (Nenhuma PRs mesclada em 30d)
Description
Example:
function doStuff() {};
class StuffDoer {
myMethod() {
doStuff();
}
}
Desired:
class StuffDoer {
myMethod() {
doStuff();
}
}
function doStuff() {};