mobbdev 1.0.99 → 1.0.101
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
|
@@ -375,6 +375,7 @@ var IssueType_Enum = /* @__PURE__ */ ((IssueType_Enum2) => {
|
|
|
375
375
|
IssueType_Enum2["DeprecatedFunction"] = "DEPRECATED_FUNCTION";
|
|
376
376
|
IssueType_Enum2["DosStringBuilder"] = "DOS_STRING_BUILDER";
|
|
377
377
|
IssueType_Enum2["DoNotRaiseException"] = "DO_NOT_RAISE_EXCEPTION";
|
|
378
|
+
IssueType_Enum2["DoNotThrowGenericException"] = "DO_NOT_THROW_GENERIC_EXCEPTION";
|
|
378
379
|
IssueType_Enum2["DuplicatedStrings"] = "DUPLICATED_STRINGS";
|
|
379
380
|
IssueType_Enum2["ErroneousStringCompare"] = "ERRONEOUS_STRING_COMPARE";
|
|
380
381
|
IssueType_Enum2["ErrorCondtionWithoutAction"] = "ERROR_CONDTION_WITHOUT_ACTION";
|
|
@@ -1571,7 +1572,8 @@ var issueTypeMap = {
|
|
|
1571
1572
|
["DECLARE_VARIABLE_EXPLICITLY" /* DeclareVariableExplicitly */]: "Declare Variable Explicitly",
|
|
1572
1573
|
["NO_NESTED_TRY" /* NoNestedTry */]: "No Nested Try",
|
|
1573
1574
|
["UNNECESSARY_IMPORTS" /* UnnecessaryImports */]: "Unnecessary Imports",
|
|
1574
|
-
["REDOS" /* Redos */]: "Regular Expression Denial of Service"
|
|
1575
|
+
["REDOS" /* Redos */]: "Regular Expression Denial of Service",
|
|
1576
|
+
["DO_NOT_THROW_GENERIC_EXCEPTION" /* DoNotThrowGenericException */]: "Do Not Throw Generic Exception"
|
|
1575
1577
|
};
|
|
1576
1578
|
var issueTypeZ = z5.nativeEnum(IssueType_Enum);
|
|
1577
1579
|
var getIssueTypeFriendlyString = (issueType) => {
|
|
@@ -2318,7 +2320,8 @@ var fixDetailsData = {
|
|
|
2318
2320
|
["DECLARE_VARIABLE_EXPLICITLY" /* DeclareVariableExplicitly */]: void 0,
|
|
2319
2321
|
["UNNECESSARY_IMPORTS" /* UnnecessaryImports */]: void 0,
|
|
2320
2322
|
["NO_NESTED_TRY" /* NoNestedTry */]: void 0,
|
|
2321
|
-
["REDOS" /* Redos */]: void 0
|
|
2323
|
+
["REDOS" /* Redos */]: void 0,
|
|
2324
|
+
["DO_NOT_THROW_GENERIC_EXCEPTION" /* DoNotThrowGenericException */]: void 0
|
|
2322
2325
|
};
|
|
2323
2326
|
|
|
2324
2327
|
// src/features/analysis/scm/shared/src/commitDescriptionMarkup.ts
|