A-lintL-restrictiongood first issue
Repository metrics
- Stars
- (10,406 stars)
- PR merge metrics
- (平均マージ 19d 22h) (30d で 113 merged PRs)
説明
I think there should be a warning about the wildcard pattern in let.
I can't imagine any situation where this makes sense, and there are cases where it's a mistake caused by taking _ for identifier though it's not.
Wrong:
{
let _ = my scope guard or whatever
// dropped right away
do stuff
}
Correct:
{
let _g = my scope guard or whatever
do stuff
// dropped at the end of the scope
}