2024-05-11 23:42:38 +08:00
|
|
|
// @ts-check
|
2024-05-08 13:43:24 +08:00
|
|
|
|
2024-05-11 23:42:38 +08:00
|
|
|
/** @type {import("prettier").Config} */
|
|
|
|
export default {
|
|
|
|
printWidth: 200,
|
2024-05-08 13:43:24 +08:00
|
|
|
bracketSpacing: true,
|
2024-05-11 23:42:38 +08:00
|
|
|
singleQuote: false,
|
|
|
|
arrowParens: "avoid",
|
|
|
|
trailingComma: "none"
|
2024-05-08 13:43:24 +08:00
|
|
|
};
|