
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>
32 lines
805 B
JavaScript
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"],
|
|
},
|
|
},
|
|
],
|
|
};
|