mobbdev 1.0.98 → 1.0.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +5 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -433,6 +433,7 @@ var IssueType_Enum = /* @__PURE__ */ ((IssueType_Enum2) => {
|
|
|
433
433
|
IssueType_Enum2["PrototypePollution"] = "PROTOTYPE_POLLUTION";
|
|
434
434
|
IssueType_Enum2["Pt"] = "PT";
|
|
435
435
|
IssueType_Enum2["RaceConditionFormatFlaw"] = "RACE_CONDITION_FORMAT_FLAW";
|
|
436
|
+
IssueType_Enum2["Redos"] = "REDOS";
|
|
436
437
|
IssueType_Enum2["RegexInjection"] = "REGEX_INJECTION";
|
|
437
438
|
IssueType_Enum2["RegexMissingTimeout"] = "REGEX_MISSING_TIMEOUT";
|
|
438
439
|
IssueType_Enum2["ReturnShouldNotBeInvariant"] = "RETURN_SHOULD_NOT_BE_INVARIANT";
|
|
@@ -1569,7 +1570,8 @@ var issueTypeMap = {
|
|
|
1569
1570
|
["DO_NOT_RAISE_EXCEPTION" /* DoNotRaiseException */]: "Do Not Raise Exception",
|
|
1570
1571
|
["DECLARE_VARIABLE_EXPLICITLY" /* DeclareVariableExplicitly */]: "Declare Variable Explicitly",
|
|
1571
1572
|
["NO_NESTED_TRY" /* NoNestedTry */]: "No Nested Try",
|
|
1572
|
-
["UNNECESSARY_IMPORTS" /* UnnecessaryImports */]: "Unnecessary Imports"
|
|
1573
|
+
["UNNECESSARY_IMPORTS" /* UnnecessaryImports */]: "Unnecessary Imports",
|
|
1574
|
+
["REDOS" /* Redos */]: "Regular Expression Denial of Service"
|
|
1573
1575
|
};
|
|
1574
1576
|
var issueTypeZ = z5.nativeEnum(IssueType_Enum);
|
|
1575
1577
|
var getIssueTypeFriendlyString = (issueType) => {
|
|
@@ -2315,7 +2317,8 @@ var fixDetailsData = {
|
|
|
2315
2317
|
["DO_NOT_RAISE_EXCEPTION" /* DoNotRaiseException */]: void 0,
|
|
2316
2318
|
["DECLARE_VARIABLE_EXPLICITLY" /* DeclareVariableExplicitly */]: void 0,
|
|
2317
2319
|
["UNNECESSARY_IMPORTS" /* UnnecessaryImports */]: void 0,
|
|
2318
|
-
["NO_NESTED_TRY" /* NoNestedTry */]: void 0
|
|
2320
|
+
["NO_NESTED_TRY" /* NoNestedTry */]: void 0,
|
|
2321
|
+
["REDOS" /* Redos */]: void 0
|
|
2319
2322
|
};
|
|
2320
2323
|
|
|
2321
2324
|
// src/features/analysis/scm/shared/src/commitDescriptionMarkup.ts
|