mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix new linting rules
This commit is contained in:
parent
4fe7f0db97
commit
fae913c221
3 changed files with 24 additions and 18 deletions
|
@ -72,7 +72,9 @@ import browser from 'browser';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
/* eslint-enable indent */
|
||||||
getDeviceIcon: getDeviceIcon,
|
|
||||||
getLibraryIcon: getLibraryIcon
|
export default {
|
||||||
}
|
getDeviceIcon: getDeviceIcon,
|
||||||
|
getLibraryIcon: getLibraryIcon
|
||||||
|
};
|
||||||
|
|
|
@ -130,17 +130,19 @@ import events from 'events';
|
||||||
return appStorage.getItem(getKey(name, userId));
|
return appStorage.getItem(getKey(name, userId));
|
||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
/* eslint-enable indent */
|
||||||
enableAutoLogin: enableAutoLogin,
|
|
||||||
enableSystemExternalPlayers: enableSystemExternalPlayers,
|
export default {
|
||||||
enableAutomaticBitrateDetection: enableAutomaticBitrateDetection,
|
enableAutoLogin: enableAutoLogin,
|
||||||
maxStreamingBitrate: maxStreamingBitrate,
|
enableSystemExternalPlayers: enableSystemExternalPlayers,
|
||||||
maxStaticMusicBitrate: maxStaticMusicBitrate,
|
enableAutomaticBitrateDetection: enableAutomaticBitrateDetection,
|
||||||
maxChromecastBitrate: maxChromecastBitrate,
|
maxStreamingBitrate: maxStreamingBitrate,
|
||||||
syncOnlyOnWifi: syncOnlyOnWifi,
|
maxStaticMusicBitrate: maxStaticMusicBitrate,
|
||||||
syncPath: syncPath,
|
maxChromecastBitrate: maxChromecastBitrate,
|
||||||
cameraUploadServers: cameraUploadServers,
|
syncOnlyOnWifi: syncOnlyOnWifi,
|
||||||
runAtStartup: runAtStartup,
|
syncPath: syncPath,
|
||||||
set: set,
|
cameraUploadServers: cameraUploadServers,
|
||||||
get: get
|
runAtStartup: runAtStartup,
|
||||||
}
|
set: set,
|
||||||
|
get: get
|
||||||
|
};
|
||||||
|
|
|
@ -249,3 +249,5 @@ import events from 'events';
|
||||||
export function getFilter(key) {
|
export function getFilter(key) {
|
||||||
return this.get(key, true);
|
return this.get(key, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* eslint-enable indent */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue