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
@@ -98,6 +111,38 @@ Detects skill references using `findSkillReferences()`:
98
111
99
112
See: `docs/cross-file-validation.md`
100
113
114
+
## Baseline Support (Gradual Adoption)
115
+
116
+
Baseline allows teams to adopt cclint incrementally by accepting the current state and only failing on new issues.
117
+
118
+
**Workflow**:
119
+
1. Run `cclint --baseline-create` to snapshot all current issues into `.cclintbaseline.json`
120
+
2. Commit the baseline file to version control
121
+
3. Run `cclint --baseline` in CI/CD - only new issues will fail the build
122
+
4. Fix issues incrementally, update baseline as needed
123
+
124
+
**Fingerprinting**: Issues are fingerprinted using SHA256 hash of (file + source + normalized message pattern). Line numbers are ignored so issues remain stable when code shifts.
0 commit comments