Glavin001/tslint-clean-code
Vedi su GitHubNewspaper rule does not catch functions implemented above and used within a class
Open
#23 aperta il 25 nov 2017
bughelp wanted
Metriche repository
- Star
- (175 star)
- Metriche merge PR
- (Nessuna PR mergiata in 30 g)
Descrizione
Example:
function doStuff() {};
class StuffDoer {
myMethod() {
doStuff();
}
}
Desired:
class StuffDoer {
myMethod() {
doStuff();
}
}
function doStuff() {};