diff --git a/adminfront/biome.json b/adminfront/biome.json index 29399f2f..74913169 100644 --- a/adminfront/biome.json +++ b/adminfront/biome.json @@ -19,6 +19,12 @@ "enabled": true }, "files": { - "ignore": ["dist", "node_modules", "tsconfig*.json"] + "ignore": [ + "dist", + "node_modules", + "tsconfig*.json", + "test-results", + "playwright-report" + ] } } diff --git a/devfront/biome.json b/devfront/biome.json index 04f99bc8..44d528eb 100644 --- a/devfront/biome.json +++ b/devfront/biome.json @@ -18,6 +18,12 @@ "enabled": true }, "files": { - "ignore": ["dist", "node_modules", "tsconfig*.json"] + "ignore": [ + "dist", + "node_modules", + "tsconfig*.json", + "test-results", + "playwright-report" + ] } } diff --git a/devfront/src/features/audit/AuditLogsPage.tsx b/devfront/src/features/audit/AuditLogsPage.tsx index 1330b979..1f20529a 100644 --- a/devfront/src/features/audit/AuditLogsPage.tsx +++ b/devfront/src/features/audit/AuditLogsPage.tsx @@ -9,9 +9,9 @@ import { Search, } from "lucide-react"; import * as React from "react"; +import { ForbiddenMessage } from "../../components/common/ForbiddenMessage"; import { Badge } from "../../components/ui/badge"; import { Button } from "../../components/ui/button"; -import { ForbiddenMessage } from "../../components/common/ForbiddenMessage"; import { Card, CardContent, diff --git a/devfront/src/features/clients/ClientsPage.tsx b/devfront/src/features/clients/ClientsPage.tsx index bba994ff..ae7019bc 100644 --- a/devfront/src/features/clients/ClientsPage.tsx +++ b/devfront/src/features/clients/ClientsPage.tsx @@ -11,6 +11,7 @@ import { import { useState } from "react"; import { useAuth } from "react-oidc-context"; import { Link, useNavigate } from "react-router-dom"; +import { ForbiddenMessage } from "../../components/common/ForbiddenMessage"; import { Avatar, AvatarFallback, @@ -18,7 +19,6 @@ import { } from "../../components/ui/avatar"; import { Badge } from "../../components/ui/badge"; import { Button } from "../../components/ui/button"; -import { ForbiddenMessage } from "../../components/common/ForbiddenMessage"; import { Card, CardContent, diff --git a/devfront/src/features/profile/ProfilePage.tsx b/devfront/src/features/profile/ProfilePage.tsx index 424c8ee3..e19164bc 100644 --- a/devfront/src/features/profile/ProfilePage.tsx +++ b/devfront/src/features/profile/ProfilePage.tsx @@ -17,8 +17,8 @@ import { CardTitle, } from "../../components/ui/card"; import { t } from "../../lib/i18n"; -import ProfileTenantSwitcher from "./ProfileTenantSwitcher"; import { fetchMe } from "../auth/authApi"; +import ProfileTenantSwitcher from "./ProfileTenantSwitcher"; function ProfilePage() { const auth = useAuth();