pury
Version:
🛡️ AI-powered security scanner with advanced threat detection, dual reporting system (detailed & summary), and comprehensive code analysis
17 lines • 611 B
JavaScript
export var FindingType;
(function (FindingType) {
FindingType["MALWARE"] = "malware";
FindingType["VULNERABILITY"] = "vulnerability";
FindingType["SECRET"] = "secret";
FindingType["CODE_QUALITY"] = "code_quality";
FindingType["PERFORMANCE"] = "performance";
FindingType["LOCALIZATION"] = "localization";
})(FindingType || (FindingType = {}));
export var Severity;
(function (Severity) {
Severity["LOW"] = "low";
Severity["MEDIUM"] = "medium";
Severity["HIGH"] = "high";
Severity["CRITICAL"] = "critical";
})(Severity || (Severity = {}));
//# sourceMappingURL=index.js.map