Koha/.prettierrc.js
Koha Development Team d659526b5a
Bug 38664: Tidy the whole codebase
This commit is generated using:
  % perl misc/devel/tidy.pl
*within* ktd, to get the same version of perltidy than what will be used
by our CI (currently v20230309).

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2025-02-11 14:58:24 +01:00

32 lines
805 B
JavaScript

module.exports = {
arrowParens: "avoid",
trailingComma: "es5",
tabWidth: 4,
useTabs: false,
overrides: [
{
files: ["*.js", "*.ts"],
options: {
trailingComma: "es5",
arrowParens: "avoid",
},
},
{
files: "*.vue",
options: {
trailingComma: "es5",
arrowParens: "avoid",
semi: false,
},
},
{
files: ["*.tt", "*.inc"],
options: {
printWidth: 240,
htmlWhitespaceSensitivity: "strict",
parser: "template-toolkit",
plugins: ["@koha-community/prettier-plugin-template-toolkit"],
},
},
],
};