mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-03 06:10:49 +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'
|
|
};
|