vue-pure-admin2/.prettierrc.js

10 lines
169 B
JavaScript
Raw Normal View History

// @ts-check
/** @type {import("prettier").Config} */
export default {
2021-07-05 17:39:00 +08:00
bracketSpacing: true,
2021-07-06 01:01:42 +08:00
singleQuote: false,
2022-02-07 15:59:04 +08:00
arrowParens: "avoid",
trailingComma: "none"
2021-07-05 17:39:00 +08:00
};