Prefer extensions over loose filename tags#2092
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #2092 +/- ##
==========================================
- Coverage 92.47% 92.46% -0.01%
==========================================
Files 119 119
Lines 24478 24493 +15
==========================================
+ Hits 22635 22647 +12
- Misses 1843 1846 +3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
Updates prek-identify filename tagging to prefer known file extensions over loose filename-prefix matches (e.g., makefile.png no longer inherits makefile/text tags), preventing binary files from being misidentified as text while keeping exact-filename semantics intact.
Changes:
- Prefer recognized extension tags over prefix-based filename tag matches, while still preserving exact filename tag matches.
- Add focused unit tests covering extension-precedence, unknown-extension fallback, and exact-name + known-extension merging.
- Document this intentional behavioral divergence from upstream in
docs/diff.md.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| docs/diff.md | Documents the intentional divergence: extensions take precedence over loose filename-prefix matches. |
| crates/prek-identify/src/lib.rs | Adjusts filename tagging logic to prioritize known extensions and adds unit tests for the new behavior. |
📦 Cargo Bloat ComparisonBinary size change: +0.00% (26.1 MiB → 26.1 MiB) Expand for cargo-bloat outputHead Branch ResultsBase Branch Results |
⚡️ Hyperfine BenchmarksSummary: 0 regressions, 2 improvements above the 10% threshold. Environment
CLI CommandsBenchmarking basic commands in the main repo:
|
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base --version |
2.2 ± 0.1 | 2.1 | 2.6 | 1.00 |
prek-head --version |
2.4 ± 0.3 | 2.0 | 3.2 | 1.06 ± 0.15 |
prek list
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base list |
9.0 ± 0.7 | 8.6 | 14.0 | 1.03 ± 0.08 |
prek-head list |
8.7 ± 0.1 | 8.4 | 9.3 | 1.00 |
prek validate-config .pre-commit-config.yaml
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base validate-config .pre-commit-config.yaml |
3.1 ± 0.1 | 2.9 | 3.2 | 1.07 ± 0.03 |
prek-head validate-config .pre-commit-config.yaml |
2.9 ± 0.1 | 2.8 | 3.1 | 1.00 |
prek sample-config
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base sample-config |
2.5 ± 0.1 | 2.5 | 2.9 | 1.04 ± 0.15 |
prek-head sample-config |
2.4 ± 0.3 | 2.3 | 4.7 | 1.00 |
Cold vs Warm Runs
Comparing first run (cold) vs subsequent runs (warm cache):
prek run --all-files (cold - no cache)
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run --all-files |
135.3 ± 1.6 | 133.3 | 137.5 | 1.00 |
prek-head run --all-files |
137.1 ± 1.9 | 134.0 | 139.9 | 1.01 ± 0.02 |
prek run --all-files (warm - with cache)
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run --all-files |
136.3 ± 3.0 | 132.9 | 144.5 | 1.01 ± 0.03 |
prek-head run --all-files |
135.2 ± 2.6 | 132.3 | 141.0 | 1.00 |
Full Hook Suite
Running the builtin hook suite on the benchmark workspace:
prek run --all-files (full builtin hook suite)
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run --all-files |
137.3 ± 7.3 | 130.6 | 185.3 | 1.00 |
prek-head run --all-files |
137.5 ± 2.6 | 132.9 | 143.8 | 1.00 ± 0.06 |
Individual Hook Performance
Benchmarking each hook individually on the test repo:
prek run trailing-whitespace --all-files
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run trailing-whitespace --all-files |
20.5 ± 0.7 | 19.8 | 23.7 | 1.03 ± 0.05 |
prek-head run trailing-whitespace --all-files |
19.9 ± 0.5 | 19.1 | 21.5 | 1.00 |
prek run end-of-file-fixer --all-files
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run end-of-file-fixer --all-files |
36.9 ± 37.8 | 23.5 | 205.9 | 1.41 ± 1.45 |
prek-head run end-of-file-fixer --all-files |
26.1 ± 2.3 | 23.5 | 31.8 | 1.00 |
✅ Performance improvement for prek run end-of-file-fixer --all-files: 29.1700% faster
prek run check-json --all-files
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run check-json --all-files |
11.6 ± 0.3 | 10.9 | 12.2 | 1.07 ± 0.04 |
prek-head run check-json --all-files |
10.9 ± 0.2 | 10.5 | 11.4 | 1.00 |
prek run check-yaml --all-files
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run check-yaml --all-files |
10.9 ± 0.1 | 10.7 | 11.3 | 1.00 |
prek-head run check-yaml --all-files |
10.9 ± 0.2 | 10.6 | 11.6 | 1.01 ± 0.02 |
prek run check-toml --all-files
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run check-toml --all-files |
11.0 ± 0.3 | 10.5 | 11.6 | 1.01 ± 0.04 |
prek-head run check-toml --all-files |
10.8 ± 0.2 | 10.5 | 11.6 | 1.00 |
prek run check-xml --all-files
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run check-xml --all-files |
11.0 ± 0.3 | 10.5 | 11.6 | 1.01 ± 0.03 |
prek-head run check-xml --all-files |
10.9 ± 0.2 | 10.6 | 11.4 | 1.00 |
prek run detect-private-key --all-files
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run detect-private-key --all-files |
17.1 ± 1.4 | 15.4 | 19.7 | 1.00 |
prek-head run detect-private-key --all-files |
17.2 ± 1.4 | 15.4 | 21.9 | 1.01 ± 0.12 |
prek run fix-byte-order-marker --all-files
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run fix-byte-order-marker --all-files |
21.9 ± 1.6 | 19.4 | 24.5 | 1.04 ± 0.10 |
prek-head run fix-byte-order-marker --all-files |
21.0 ± 1.3 | 18.9 | 23.6 | 1.00 |
Installation Performance
Benchmarking hook installation (fast path hooks skip Python setup):
prek install-hooks (cold - no cache)
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base install-hooks |
4.5 ± 0.0 | 4.5 | 4.6 | 1.02 ± 0.01 |
prek-head install-hooks |
4.4 ± 0.0 | 4.4 | 4.5 | 1.00 |
prek install-hooks (warm - with cache)
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base install-hooks |
4.6 ± 0.1 | 4.5 | 4.7 | 1.03 ± 0.02 |
prek-head install-hooks |
4.4 ± 0.1 | 4.4 | 4.5 | 1.00 |
File Filtering/Scoping Performance
Testing different file selection modes:
prek run (staged files only)
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run |
46.3 ± 0.7 | 45.2 | 47.3 | 1.00 |
prek-head run |
46.4 ± 0.9 | 45.0 | 47.9 | 1.00 ± 0.02 |
prek run --files '*.json' (specific file type)
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run --files '*.json' |
8.0 ± 0.1 | 7.9 | 8.2 | 1.02 ± 0.02 |
prek-head run --files '*.json' |
7.9 ± 0.1 | 7.7 | 8.3 | 1.00 |
Workspace Discovery & Initialization
Benchmarking hook discovery and initialization overhead:
prek run --dry-run --all-files (measures init overhead)
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run --dry-run --all-files |
10.0 ± 0.1 | 9.9 | 10.2 | 1.02 ± 0.01 |
prek-head run --dry-run --all-files |
9.9 ± 0.1 | 9.7 | 10.1 | 1.00 |
Meta Hooks Performance
Benchmarking meta hooks separately:
prek run check-hooks-apply --all-files
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run check-hooks-apply --all-files |
12.2 ± 0.1 | 12.0 | 12.3 | 1.12 ± 0.04 |
prek-head run check-hooks-apply --all-files |
10.9 ± 0.4 | 10.6 | 11.9 | 1.00 |
✅ Performance improvement for prek run check-hooks-apply --all-files: 10.7000% faster
prek run check-useless-excludes --all-files
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run check-useless-excludes --all-files |
10.9 ± 0.1 | 10.7 | 11.1 | 1.00 |
prek-head run check-useless-excludes --all-files |
11.4 ± 1.3 | 10.5 | 13.9 | 1.04 ± 0.12 |
prek run identity --all-files
| Command | Mean [ms] | Min [ms] | Max [ms] | Relative |
|---|---|---|---|---|
prek-base run identity --all-files |
9.7 ± 0.1 | 9.6 | 9.8 | 1.02 ± 0.01 |
prek-head run identity --all-files |
9.5 ± 0.1 | 9.4 | 9.8 | 1.00 |
d94642a to
a9f44f5
Compare
a9f44f5 to
e931848
Compare
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [prek](https://github.com/j178/prek) | patch | `0.4.0` → `0.4.1` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>j178/prek (prek)</summary> ### [`v0.4.1`](https://github.com/j178/prek/blob/HEAD/CHANGELOG.md#041) [Compare Source](j178/prek@v0.4.0...v0.4.1) Released on 2026-05-20. ##### Enhancements - Fix pre-push range after rebase ([#​2089](j178/prek#2089)) - Prefer extensions over loose filename tags ([#​2092](j178/prek#2092)) - Skip installs for hooks that will not run ([#​2103](j178/prek#2103)) ##### Performance - Optimize meta hook file scans ([#​2106](j178/prek#2106)) - Reduce run filtering allocations ([#​2090](j178/prek#2090)) ##### Contributors - [@​j178](https://github.com/j178) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xODUuMCIsInVwZGF0ZWRJblZlciI6IjQzLjE4NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJSZW5vdmF0ZSBCb3QiLCJhdXRvbWF0aW9uOmJvdC1hdXRob3JlZCIsImRlcGVuZGVuY3ktdHlwZTo6cGF0Y2giXX0=-->
Closes #2087
Prefer recognized extensions over loose filename-prefix matches during file identification, while preserving exact filename tags and unknown-extension fallbacks.