From 90b858ebd53fdf003226b19ad72daa6248c536e5 Mon Sep 17 00:00:00 2001 From: Dmitriy Bratchikov Date: Mon, 27 May 2024 16:23:46 +0700 Subject: [PATCH] lint: prettier --- .eslintrc.json | 9 +++------ app/layout.tsx | 3 --- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 53bca78..9b58ef5 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -116,8 +116,7 @@ { "from": ["shared"], "disallow": ["app", "pages", "widgets", "features", "entities"], - "message": - "Shared module must not import upper layers (${dependency.type})" + "message": "Shared module must not import upper layers (${dependency.type})" }, { "from": ["entities"], @@ -138,8 +137,7 @@ }, { "from": ["features"], - "message": - "Feature must not import upper layers (${dependency.type})", + "message": "Feature must not import upper layers (${dependency.type})", "disallow": ["app", "pages", "widgets"] }, { @@ -156,8 +154,7 @@ }, { "from": ["widgets"], - "message": - "Feature must not import upper layers (${dependency.type})", + "message": "Feature must not import upper layers (${dependency.type})", "disallow": ["app", "pages"] }, { diff --git a/app/layout.tsx b/app/layout.tsx index 1fe64df..1eb394b 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -3,9 +3,6 @@ import type { ReactNode } from "react" import "@app/styles/global.scss" - - - export const metadata: Metadata = { title: "Let's Develop!", description: "FSD Template with Next.js by yunglocokid",