From 43f2d6a06b2b57758aaa0b780c7c8ca73c242ff0 Mon Sep 17 00:00:00 2001 From: yeonjuan Date: Tue, 19 Mar 2024 01:30:13 +0900 Subject: [PATCH] chore(website): disable internal/no-relative-paths-to-internal-packages rule --- packages/website/src/components/editor/useSandboxServices.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/website/src/components/editor/useSandboxServices.ts b/packages/website/src/components/editor/useSandboxServices.ts index c403868c1ecd..c2855c8af6c4 100644 --- a/packages/website/src/components/editor/useSandboxServices.ts +++ b/packages/website/src/components/editor/useSandboxServices.ts @@ -3,6 +3,7 @@ import type * as Monaco from 'monaco-editor'; import { useEffect, useState } from 'react'; import semverSatisfies from 'semver/functions/satisfies'; +// eslint-disable-next-line @typescript-eslint/internal/no-relative-paths-to-internal-packages import rootPackageJson from '../../../../../package.json'; import type { createTypeScriptSandbox } from '../../vendor/sandbox'; import { createCompilerOptions } from '../lib/createCompilerOptions';