add prettier setup

This commit is contained in:
e560248
2025-04-08 12:54:07 +02:00
parent 419113541b
commit 6577698459
43 changed files with 781 additions and 654 deletions

View File

@@ -0,0 +1,12 @@
/**
* @see https://prettier.io/docs/configuration
* @type {import("prettier").Config}
*/
const config = {
trailingComma: "es5",
tabWidth: 2,
semi: false,
singleQuote: true,
};
export default config;