Whole project format with some minor codestyle fixes

This commit is contained in:
2025-05-14 13:23:23 +01:00
parent 5c9dc284e8
commit 38e3dccdfd
28 changed files with 1131 additions and 959 deletions

View File

@@ -1,17 +1,17 @@
const config = {
singleQuote: false,
tabWidth: 4,
trailingComma: "all",
printWidth: 100,
plugins: ["prettier-plugin-jinja-template"],
overrides: [
{
files: ["*.html"],
options: {
parser: "jinja-template"
}
}
]
singleQuote: false,
tabWidth: 4,
trailingComma: "all",
printWidth: 100,
plugins: ["prettier-plugin-jinja-template"],
overrides: [
{
files: ["*.html"],
options: {
parser: "jinja-template",
},
},
],
};
export default config;