]> git.koha-community.org Git - koha.git/blob - .prettierrc.js
Bug 35169: add bug_35169.pl for DB
[koha.git] / .prettierrc.js
1 module.exports = {
2     arrowParens: "avoid",
3     trailingComma: "es5",
4     overrides: [
5         {
6             files: "*.vue",
7             options: {
8                 semi: false,
9             }
10         }
11     ]
12 }