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 };