From 21550fe01db639877f9e00950b81a6598ece746b Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Mon, 5 Feb 2024 09:40:29 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8(frontend)=20fix=20linting=20issues?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The prettier upgrade was causing some linting issues. This commit fixes them. --- src/frontend/apps/desk/tsconfig.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/frontend/apps/desk/tsconfig.json b/src/frontend/apps/desk/tsconfig.json index 6eff175..ebff7dc 100644 --- a/src/frontend/apps/desk/tsconfig.json +++ b/src/frontend/apps/desk/tsconfig.json @@ -15,19 +15,19 @@ "incremental": true, "plugins": [ { - "name": "next", - }, + "name": "next" + } ], "paths": { - "@/*": ["./src/*"], - }, + "@/*": ["./src/*"] + } }, "include": [ "src/custom-next.d.ts", "next-env.d.ts", "**/*.ts", "**/*.tsx", - ".next/types/**/*.ts", + ".next/types/**/*.ts" ], - "exclude": ["node_modules"], + "exclude": ["node_modules"] }