mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-12 06:53:42 +08:00
10 lines
169 B
JavaScript
Executable File
10 lines
169 B
JavaScript
Executable File
// @ts-check
|
|
|
|
/** @type {import("prettier").Config} */
|
|
export default {
|
|
bracketSpacing: true,
|
|
singleQuote: false,
|
|
arrowParens: "avoid",
|
|
trailingComma: "none"
|
|
};
|