Merged
Conversation
There was a problem hiding this comment.
Benchmark
Details
| Benchmark suite | Current: 3b7420b | Previous: 6fafd55 | Ratio |
|---|---|---|---|
cpython |
0.05251916704 seconds (± 0.0014) |
0.05403905604000001 seconds (± 0.0039) |
0.97 |
airflow |
0.14520925494 seconds (± 0.0014) |
0.14513170914 seconds (± 0.0012) |
1.00 |
prefect |
0.06191370843999999 seconds (± 0.001) |
0.06253692654000001 seconds (± 0.004) |
0.99 |
ruff |
0.12906559244000002 seconds (± 0.0018) |
0.12776928374000002 seconds (± 0.0024) |
1.01 |
This comment was automatically generated by workflow using github-action-benchmark.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #38 +/- ##
==========================================
- Coverage 98.51% 98.49% -0.03%
==========================================
Files 19 19
Lines 2769 2791 +22
==========================================
+ Hits 2728 2749 +21
- Misses 41 42 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This change makes
loq baselinea true “reset to current state” command. Running baseline now syncs exact-path rules to current file sizes (grow or shrink), removes rules for files that are compliant or deleted, and createsloq.tomlwith defaults if it doesn’t exist (including adding.loq_cacheto.gitignore). The ratcheting behavior is removed along with the--allow-growthflag, and tests/docs are updated to match.Motivation
Baseline previously behaved like a ratchet, which was surprising given the name. This update aligns baseline with the intuitive expectation of capturing the current reality, making it the natural first command for adoption and the right tool for re-baselining after intentional changes.
CLOSES #37