mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +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"
|
|
};
|