noname/prettier.config.mjs

14 lines
259 B
JavaScript
Raw Normal View History

2024-04-17 06:36:01 +00:00
/** @type {import("prettier").Config} */
export default {
2024-04-24 08:23:44 +00:00
arrowParens: "avoid",
2024-04-17 06:36:01 +00:00
bracketSpacing: true,
endOfLine: "lf",
2024-04-24 08:23:44 +00:00
printWidth: 999,
2024-04-17 06:36:01 +00:00
proseWrap: "preserve",
quoteProps: "as-needed",
semi: true,
tabWidth: 4,
trailingComma: "es5",
useTabs: true,
};