UNPKG

ubon

Version:

Security scanner for AI-generated React/Next.js and Python apps. Catches hardcoded secrets, accessibility issues, and vulnerabilities that traditional linters miss.

13 lines (12 loc) 383 B
export type RuleSeverity = 'high' | 'medium' | 'low'; export type RuleCategory = 'security' | 'accessibility' | 'links' | 'performance' | 'seo'; export interface RuleMeta { id: string; category: RuleCategory; severity: RuleSeverity; message: string; fix?: string; helpUri?: string; impact?: string; } export declare const RULES: Record<string, RuleMeta>;