[READ-ONLY] Mirror of https://github.com/FoxxMD/multi-scrobbler. Scrobble plays from multiple sources to multiple clients docs.multi-scrobbler.app
deezer docker jellyfin koito lastfm listenbrainz maloja mopidy mpris music music-assistant plex scrobble self-hosted spotify subsonic tautulli youtube-music
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(eslint): ignore no-undef

FoxxMD (Jul 9, 2026, 1:59 AM UTC) 69b19da6 f2e2d676

+7
+7
eslint.config.js
··· 86 86 "@typescript-eslint/no-unused-expressions": 'off', 87 87 'mocha/max-top-level-suites': 'off' 88 88 }, 89 + }, 90 + { 91 + // https://typescript-eslint.io/troubleshooting/faqs/eslint#i-get-errors-from-the-no-undef-rule-about-global-variables-not-being-defined-even-though-there-are-no-typescript-errors 92 + files: ['**/*.{ts,tsx,mts,cts}'], 93 + rules: { 94 + 'no-undef': 'off', 95 + } 89 96 } 90 97 ]);