Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: enable property type error in config example
Browse files Browse the repository at this point in the history
linyibing committed Jun 14, 2024
1 parent 9589e40 commit e51c8e7
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/content/docs/guides/big-projects.mdx
Original file line number Diff line number Diff line change
@@ -87,7 +87,7 @@ Let's jump to `app/backend/biome.json`, where we need to enable the linting:
{
"extends": ["../biome.json"],
"linter": {
"enabled": "true",
"enabled": true,
"rules": {
"recommended": true
}
2 changes: 1 addition & 1 deletion src/content/docs/ja/guides/big-projects.mdx
Original file line number Diff line number Diff line change
@@ -84,7 +84,7 @@ app
{
"extends": ["../biome.json"],
"linter": {
"enabled": "true",
"enabled": true,
"rules": {
"recommended": true
}
2 changes: 1 addition & 1 deletion src/content/docs/pt-br/guides/big-projects.mdx
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ Vamos para o arquivo `app/backend/biome.json`, onde precisamos habilitar o [lint
{
"extends": ["../biome.json"],
"linter": {
"enabled": "true",
"enabled": true,
"rules": {
"recommended": true
}
2 changes: 1 addition & 1 deletion src/content/docs/zh-cn/guides/big-projects.mdx
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@ app
{
"extends": ["../biome.json"],
"linter": {
"enabled": "true",
"enabled": true,
"rules": {
"recommended": true
}

0 comments on commit e51c8e7

Please sign in to comment.