You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: prevent duplicate files when --files-changed-only=false (#164)
I found that the glob pattern for some extensions hit multiple files more than once.
```py
pathlib.Path(".").rglob("*.c")
# matches demo.c and demo.cpp
```
Worse, the duplicates were being analyzed more than once.
So, this offer a performance improvement as well.
0 commit comments