mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-03 14:20:50 +08:00
11 lines
166 B
JavaScript
11 lines
166 B
JavaScript
|
|
/**
|
||
|
|
* @type {import('prettier').Config}
|
||
|
|
*/
|
||
|
|
module.exports = {
|
||
|
|
singleQuote: true,
|
||
|
|
semi: true,
|
||
|
|
printWidth: 100,
|
||
|
|
trailingComma: 'none',
|
||
|
|
endOfLine: 'auto'
|
||
|
|
};
|