mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
12 lines
193 B
JavaScript
12 lines
193 B
JavaScript
/**
|
|
* @type {import("prettier").Options}
|
|
*/
|
|
const config = {
|
|
tabWidth: 4,
|
|
printWidth: 90,
|
|
semi: true,
|
|
endOfLine: "auto",
|
|
trailingComma: "all",
|
|
};
|
|
module.exports = config;
|