Hangar/frontend/.prettierrc.js
2023-04-05 21:33:19 +02:00

12 lines
187 B
JavaScript

/**
* @type {import("prettier").Options}
*/
module.exports = {
tabWidth: 2,
semi: true,
singleQuote: false,
printWidth: 160,
arrowParens: "always",
trailingComma: "es5",
};