auth-web/.prettierrc.js

10 lines
169 B
JavaScript
Raw Normal View History

2024-09-26 09:38:02 +08:00
// @ts-check
/** @type {import("prettier").Config} */
export default {
bracketSpacing: true,
singleQuote: false,
arrowParens: "avoid",
trailingComma: "none"
};