Skip to content

Commit

Permalink
fix(docs): config file name (#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
bushuai authored Oct 20, 2023
1 parent 888b158 commit 9ea517a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/src/content/docs/guides/big-projects.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand All @@ -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": {
Expand Down

0 comments on commit 9ea517a

Please sign in to comment.