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
@@ -71,7 +71,7 @@ describe('Selection', () => {
expect(input.attributes('name')).toBe('selection');
expect(input.element.matches(':checked')).toBe(false);
};
}
});
test('shows value from store', () => {
+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 });
};
@@ -33,7 +33,7 @@ export const assertType = function assertType (value, path) {
export const validateSelectionOptions = function validateSelectionOptions (options, path) {
if (!Array.isArray(options) || options.length === 0) {
throw new Error(`[settings] "${path}.options" must be a non-empty array`);
};
}
options.forEach((opt, i) => {
assertString(opt.name, `${path}.options[${i}].name`);
assertString(opt.i18n, `${path}.options[${i}].i18n`);
@@ -61,7 +61,7 @@ export const validateEntry = function validateEntry (entry, path) {
if (typeof entry.allowMultiple !== 'boolean' && entry.allowMultiple) {
throw new Error(`[settings] "${path}.allowMultiple" must be a boolean`);
}
};
}
if (entry.default !== undefined) {
if (entry.type === 'bool' && typeof entry.default !== 'boolean') {
throw new Error(`[settings] "${path}.default" must be a boolean`);
@@ -89,12 +89,12 @@ export const validateEntry = function validateEntry (entry, path) {
} else {
if (typeof entry.default !== 'string') {
throw new Error(`[settings] "${path}.default" must be a string`);
};
}
if (!entry.options.map((option) => option.name).includes(entry.default)) {
throw new Error(`[settings] option "${path}.default" does not exist`);
};
}
}
};
}
}
};
@@ -104,7 +104,7 @@ export const validateFirstLevelSection = function validateFirstLevelSection (sec
if (!Array.isArray(section.content)) {
throw new Error(`[settings] "${path}.content" must be an array`);
};
}
section.content.forEach((entry, i) =>
validateEntry(entry, `${path}.content[${i}]`)