From 9ea517a61d28fb574f4877391a10c3580d7b9162 Mon Sep 17 00:00:00 2001 From: buu Date: Fri, 20 Oct 2023 16:47:08 +0800 Subject: [PATCH] fix(docs): config file name (#561) --- website/src/content/docs/guides/big-projects.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/src/content/docs/guides/big-projects.mdx b/website/src/content/docs/guides/big-projects.mdx index 4fae925725d0..3d455e05fc9f 100644 --- a/website/src/content/docs/guides/big-projects.mdx +++ b/website/src/content/docs/guides/big-projects.mdx @@ -79,7 +79,7 @@ Then, we tell Biome to inherit all the options from the main `app/biome.json` fi ```diff { -+ "extends": ["../../app.json"], ++ "extends": ["../../biome.json"], "formatter": { "indentStyle": "space" } @@ -92,7 +92,7 @@ Let's jump to `app/backend/biome.json`, where we need to enable the linting: ```json { - "extends": ["../app.json"], + "extends": ["../biome.json"], "linter": { "enabled": "true", "rules": {