[IMP] update dotfiles

This commit is contained in:
oca-git-bot
2024-10-20 16:07:29 +00:00
parent 4c56070f9d
commit 4795bed67c
6 changed files with 239 additions and 209 deletions

14
prettier.config.cjs Normal file
View File

@@ -0,0 +1,14 @@
/** @type {import('prettier').Config} */
const config = {
// https://github.com/prettier/prettier/issues/15388#issuecomment-1717746872
plugins: [require.resolve("@prettier/plugin-xml")],
bracketSpacing: false,
printWidth: 88,
proseWrap: "always",
semi: true,
trailingComma: "es5",
xmlWhitespaceSensitivity: "preserve",
};
module.exports = config;