From 7ed8e0bf7c4404881aa4f8f6b54abf84729acc29 Mon Sep 17 00:00:00 2001 From: Ed Date: Fri, 20 Dec 2024 14:52:36 +0100 Subject: [PATCH] fix(docs-website): showcase relative path resolving in migration guide page --- apps/docs-website/docs/migration-guide.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/docs-website/docs/migration-guide.mdx b/apps/docs-website/docs/migration-guide.mdx index 24ec3469..85e459fe 100644 --- a/apps/docs-website/docs/migration-guide.mdx +++ b/apps/docs-website/docs/migration-guide.mdx @@ -32,7 +32,7 @@ import { defineFlatConfig } from "eslint-define-config"; const sheriffOptions = { // highlight-next-line - files: ["./src/**/*"], // Only the files in the src directory will be linted. + files: ["src/**/*"], // Only the files in the src directory will be linted. react: false, next: false, astro: false, @@ -55,7 +55,7 @@ import { defineFlatConfig } from "eslint-define-config"; const sheriffOptions: SheriffSettings = { // highlight-next-line - files: ["./src/**/*"], // Only the files in the src directory will be linted. + files: ["src/**/*"], // Only the files in the src directory will be linted. react: false, next: false, astro: false,