mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
b7ef20d6fd
For some reason, the original version of this started working again. I'm merging it to undo a small part of a recent change.
12 lines
348 B
JavaScript
12 lines
348 B
JavaScript
/** @type {import("prettier").Config} */
|
|
module.exports = {
|
|
plugins: ["prettier-plugin-jsdoc", "prettier-plugin-organize-imports"],
|
|
printWidth: 120,
|
|
trailingComma: "es5",
|
|
useTabs: false,
|
|
jsdocVerticalAlignment: true,
|
|
jsdocSeparateReturnsFromParam: true,
|
|
jsdocSeparateTagGroups: true,
|
|
jsdocPreferCodeFences: true,
|
|
};
|