1 parent 39242cc commit acd3310Copy full SHA for acd3310
1 file changed
src/utils/replace-if-not-found.ts
@@ -3,6 +3,7 @@ export function replaceIfNotFound(
3
stringToBeReplaced: string,
4
newStringToReplace: string,
5
) {
6
+ console.log("deliberate lint violation, do not merge");
7
// Make sure the original does not contain the new string
8
if (!originalString.includes(newStringToReplace)) {
9
return originalString.replace(stringToBeReplaced, newStringToReplace);
0 commit comments