style: remove unnecessary semicolons after blocks

This commit is contained in:
2026-08-09 13:09:39 +02:00
committed by Gitea
parent 722865133d
commit cd1755693b
8 changed files with 15 additions and 15 deletions
+2 -2
View File
@@ -31,12 +31,12 @@ export const getSettingRecursively = function getSettingRecursively (sectionPath
return oneSettingsLevel(cursor.slice(1, cursor.length), setting);
} else {
return setting;
};
}
} else if (cursor.length <= 1) {
return setting;
} else {
return;
};
}
};
return oneSettingsLevel(sectionPath, { content: settings });
};