waveterm/prettier.config.cjs
Sylvie Crowe b7ef20d6fd
Windows Line Endings (#923)
For some reason, the original version of this started working again. I'm
merging it to undo a small part of a recent change.
2024-10-01 12:54:15 -07:00

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,
};