Skip to content

Commit

Permalink
Merge pull request #325 from token-ed/fix/docs-website
Browse files Browse the repository at this point in the history
fix(docs-website): showcase relative path resolving in migration guide page
  • Loading branch information
AndreaPontrandolfo authored Dec 21, 2024
2 parents 7e6fdef + 7ed8e0b commit 19ef9f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/docs-website/docs/migration-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 19ef9f6

Please sign in to comment.