From 46775479d50c69a3ccb711274b0532042c97797c Mon Sep 17 00:00:00 2001 From: TheItsNamless Date: Tue, 22 Jul 2025 20:22:46 +0200 Subject: [PATCH] feat(prettier): add Prettier configuration file for code formatting --- .prettierrc.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .prettierrc.json diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000..be449fd --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,10 @@ +{ + "semi": true, + "trailingComma": "all", + "singleQuote": false, + "tabWidth": 2, + "useTabs": false, + "printWidth": 80, + "bracketSpacing": true, + "arrowParens": "always" +}