mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-24 15:37:19 +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"
|
|
};
|