From 87fc4018986396e1e04d61546218d514f0776789 Mon Sep 17 00:00:00 2001 From: nxtkofi Date: Sat, 28 Mar 2026 11:45:28 +0100 Subject: [PATCH] build: add oxfmt as a prettier replacement --- .oxfmtrc.jsonc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .oxfmtrc.jsonc diff --git a/.oxfmtrc.jsonc b/.oxfmtrc.jsonc new file mode 100644 index 0000000..ef7ab21 --- /dev/null +++ b/.oxfmtrc.jsonc @@ -0,0 +1,10 @@ +{ + "$schema": "./node_modules/oxfmt/configuration_schema.json", + "printWidth": 80, // Prettier domyślnie 80 — oxfmt domyślnie 100! + "tabWidth": 2, + "semi": true, + "singleQuote": true, + "trailingComma": "all", + "bracketSpacing": true, + "arrowParens": "always", +}