impeccable project-wide

This commit is contained in:
2026-07-17 00:09:25 +02:00
parent 60bcd589c0
commit b4c02c45f0
106 changed files with 51536 additions and 0 deletions
@@ -0,0 +1,12 @@
import { getAntipattern } from './registry/antipatterns.mjs';
function getAP(id) {
return getAntipattern(id);
}
function finding(id, filePath, snippet, line = 0) {
const ap = getAP(id);
return { antipattern: id, name: ap.name, description: ap.description, severity: ap.severity || 'warning', file: filePath, line, snippet };
}
export { getAP, finding };