https://www.npmjs.com/package/@koha-community/prettier-plugin-template-toolkit https://gitlab.com/koha-community/prettier-plugin-template-toolkit Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
32 lines
803 B
JavaScript
32 lines
803 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"],
|
|
},
|
|
},
|
|
],
|
|
}
|