From fe998aa159b6e05bc69236efadd0b4cf60ca12b3 Mon Sep 17 00:00:00 2001 From: asepharyana Date: Fri, 10 Jul 2026 06:31:07 +0700 Subject: [PATCH] chore: update submodule pointers (biome.json rule expansion) --- apps/elysia | 2 +- apps/react | 2 +- biome.json.bak | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+), 2 deletions(-) create mode 100644 biome.json.bak diff --git a/apps/elysia b/apps/elysia index 3346bbc..b8f4b58 160000 --- a/apps/elysia +++ b/apps/elysia @@ -1 +1 @@ -Subproject commit 3346bbc692fd5f77230ea567231e446de77ed65d +Subproject commit b8f4b5806e793314847b1261cc71494fae0e5e5c diff --git a/apps/react b/apps/react index bbeead9..b08c142 160000 --- a/apps/react +++ b/apps/react @@ -1 +1 @@ -Subproject commit bbeead9a86b786fe62f4ae49a94e4e01c8f4ef76 +Subproject commit b08c142e2391b5ad986c3f6ad4be07d32233dacb diff --git a/biome.json.bak b/biome.json.bak new file mode 100644 index 0000000..7d842f9 --- /dev/null +++ b/biome.json.bak @@ -0,0 +1,58 @@ +{ + "$schema": "https://biomejs.dev/schemas/2.5.3/schema.json", + "assist": { "actions": { "source": { "organizeImports": "on" } } }, + "linter": { + "enabled": true, + "rules": { + "preset": "recommended", + "suspicious": { + "noConsole": "off", + "noExplicitAny": "warn" + }, + "correctness": { + "noUnusedVariables": "error" + }, + "style": { + "noNonNullAssertion": "off" + }, + "complexity": { + "noForEach": "off", + "noThisInStatic": "off" + } + } + }, + "formatter": { + "enabled": true, + "formatWithErrors": false, + "indentStyle": "space", + "indentWidth": 2, + "lineWidth": 100, + "lineEnding": "lf" + }, + "javascript": { + "jsxRuntime": "transparent", + "formatter": { + "quoteStyle": "single", + "jsxQuoteStyle": "double", + "trailingCommas": "all", + "semicolons": "always", + "arrowParentheses": "always" + } + }, + "files": { + "ignoreUnknown": false, + "includes": [ + "**", + "!**/.opencode", + "!**/dist", + "!**/out", + "!**/build", + "!**/node_modules", + "!**/target", + "!**/coverage", + "!**/*.env", + "!**/*.env.*", + "!**/apps/react/src/routeTree.gen.ts" + ] + } +}