mirror of
https://mirror.skon.top/github.com/pure-admin/pure-admin-thin
synced 2026-04-20 21:02:16 +08:00
10 lines
169 B
JavaScript
10 lines
169 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import("prettier").Config} */
|
|
export default {
|
|
bracketSpacing: true,
|
|
singleQuote: false,
|
|
arrowParens: "avoid",
|
|
trailingComma: "none"
|
|
};
|