mirror of
https://github.com/Jellify-Music/App.git
synced 2025-12-16 16:26:33 -06:00
* Gapless playback (#372) * Add gapless playback prefetch logic for next track * Enhance player context to support multiple track downloads and prevent redundant prefetching * Add download quality settings and integrate into track mapping and network contexts (#386) * Add Shuffle * Add Library Selection screen and navigation to account tab * player redesign featuring blurred background artwork * add repeat modes to player
14 lines
241 B
JavaScript
14 lines
241 B
JavaScript
module.exports = {
|
|
arrowParens: 'always',
|
|
bracketSpacing: true,
|
|
jsxBracketSameLine: true,
|
|
jsxSingleQuote: true,
|
|
singleQuote: true,
|
|
semi: false,
|
|
printWidth: 100,
|
|
useTabs: true,
|
|
tabWidth: 4,
|
|
endOfLine: 'lf',
|
|
trailingComma: 'all',
|
|
}
|