diff --git a/src/Lifecycle.js b/src/Lifecycle.js index 4d62e6bb46..4ae651d3bb 100644 --- a/src/Lifecycle.js +++ b/src/Lifecycle.js @@ -527,4 +527,4 @@ export async function flushStorageAndReload() { await cli.clearStores(); // start the session again without clearing storage _doSetLoggedIn(credentials, false); -} \ No newline at end of file +} diff --git a/src/settings/SettingsStore.js b/src/settings/SettingsStore.js index 76dd89a7f7..f17d47401e 100644 --- a/src/settings/SettingsStore.js +++ b/src/settings/SettingsStore.js @@ -248,7 +248,7 @@ export default class SettingsStore { if (actualValue !== undefined && actualValue !== null) return actualValue; return calculatedValue; } - + /* eslint-disable valid-jsdoc */ /** * Sets the value for a setting. The room ID is optional if the setting is not being * set for a particular room, otherwise it should be supplied. The value may be null @@ -260,6 +260,7 @@ export default class SettingsStore { * @param {*} value The new value of the setting, may be null. * @return {Promise} Resolves when the setting has been changed. */ + /* eslint-enable valid-jsdoc */ static async setValue(settingName, roomId, level, value) { // Verify that the setting is actually a setting if (!SETTINGS[settingName]) {