Glavin001 / Glavin001/tslint-clean-code
no-return-promise-resolve
Open
rule
- Dominant language
- TypeScript
- Stars
- 175
- Forks
- 15
- PR merge metrics
- No merged PRs in 30d
Description
```
somePromise.then(() => Promise.resolve(data));
```
should be
```
somePromise.then(() => data);
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.