Glavin001 / Glavin001/tslint-clean-code
Newspaper rule does not catch functions implemented above and used within a class
Open
bug
help wanted
- Dominant language
- TypeScript
- Stars
- 175
- Forks
- 15
- PR merge metrics
- No merged PRs in 30d
Description
Example:
```
function doStuff() {};
class StuffDoer {
myMethod() {
doStuff();
}
}
```
Desired:
```
class StuffDoer {
myMethod() {
doStuff();
}
}
function doStuff() {};
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.