vite_ts_auto/.prettierrc.js

11 lines
183 B
JavaScript
Raw Normal View History

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