From c4d3a9f7a1eac012f695f0bd9a6f780b65c86cb7 Mon Sep 17 00:00:00 2001 From: chan Date: Mon, 23 Feb 2026 17:52:36 +0900 Subject: [PATCH] =?UTF-8?q?=EC=B5=9C=EC=8B=A0=20=EB=82=B4=EC=9A=A9=20?= =?UTF-8?q?=EB=B0=98=EC=98=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/code_check.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/code_check.yml b/.gitea/workflows/code_check.yml index 8f188d20..3e802d76 100644 --- a/.gitea/workflows/code_check.yml +++ b/.gitea/workflows/code_check.yml @@ -75,8 +75,8 @@ jobs: - name: Biome check adminfront (lint + format) run: | cd adminfront - npx biome lint . - npx biome format . --check + npx biome check . --formatter-enabled=false --organize-imports-enabled=false + npx biome check . --linter-enabled=false --organize-imports-enabled=false - name: Install devfront dependencies run: | @@ -86,8 +86,8 @@ jobs: - name: Biome check devfront (lint + format) run: | cd devfront - npx biome lint . - npx biome format . --check + npx biome check . --formatter-enabled=false --organize-imports-enabled=false + npx biome check . --linter-enabled=false --organize-imports-enabled=false - name: Lint Go backend uses: golangci/golangci-lint-action@v6