This commit is contained in:
2024-11-09 21:57:08 -06:00
parent a1790b8977
commit d5e0b2ad79
17 changed files with 3696 additions and 20 deletions

19
prettier.config.js Normal file
View File

@@ -0,0 +1,19 @@
// @ts-check
/** @type {import("prettier").Config} */
export default {
semi: true,
trailingComma: "all",
singleQuote: false,
printWidth: 120,
endOfLine: "auto",
tabWidth: 4,
useTabs: false,
overrides: [
{
files: "*.json",
options: {
parser: "json",
},
},
],
};