From 3803aea32551b6b40a2e53950e59a8e306734442 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ma=C3=ABl=20Obr=C3=A9jan?= <mael.obrejan@protonmail.com>
Date: Fri, 12 Jan 2024 07:51:26 +0100
Subject: [PATCH] fix(docs): update $schema url

---
 website/src/content/docs/guides/getting-started.mdx       | 2 +-
 website/src/content/docs/ja/guides/getting-started.mdx    | 2 +-
 website/src/content/docs/pt-br/guides/getting-started.mdx | 2 +-
 website/src/content/docs/reference/configuration.mdx      | 8 ++++----
 website/src/content/docs/zh-cn/guides/getting-started.mdx | 2 +-
 .../src/content/docs/zh-cn/reference/configuration.mdx    | 8 ++++----
 6 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/website/src/content/docs/guides/getting-started.mdx b/website/src/content/docs/guides/getting-started.mdx
index ef4a38bafe05..c56c2643cb32 100644
--- a/website/src/content/docs/guides/getting-started.mdx
+++ b/website/src/content/docs/guides/getting-started.mdx
@@ -46,7 +46,7 @@ After running the `init` command, you'll now have a new `biome.json` file in you
 
 ```json title="biome.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json",
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
   "organizeImports": {
     "enabled": false
   },
diff --git a/website/src/content/docs/ja/guides/getting-started.mdx b/website/src/content/docs/ja/guides/getting-started.mdx
index f061ccd1e72e..766ee21f9bd3 100644
--- a/website/src/content/docs/ja/guides/getting-started.mdx
+++ b/website/src/content/docs/ja/guides/getting-started.mdx
@@ -44,7 +44,7 @@ Biomeをインストールする際には、バージョン範囲演算子を使
 
 ```json title="biome.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json",
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
   "organizeImports": {
     "enabled": false
   },
diff --git a/website/src/content/docs/pt-br/guides/getting-started.mdx b/website/src/content/docs/pt-br/guides/getting-started.mdx
index ebab4e359ca1..6e0803e55f61 100644
--- a/website/src/content/docs/pt-br/guides/getting-started.mdx
+++ b/website/src/content/docs/pt-br/guides/getting-started.mdx
@@ -46,7 +46,7 @@ Após utilizar o comando, você terá um novo arquivo `biome.json` no seu diret
 
 ```json title="biome.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json",
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
   "organizeImports": {
     "enabled": false
   },
diff --git a/website/src/content/docs/reference/configuration.mdx b/website/src/content/docs/reference/configuration.mdx
index ee43dc0ab5c7..22c8d1361e9c 100644
--- a/website/src/content/docs/reference/configuration.mdx
+++ b/website/src/content/docs/reference/configuration.mdx
@@ -30,7 +30,7 @@ If you have problems with resolving the physical file, you can use the one publi
 
 ```json title="biome.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json"
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json"
 }
 ```
 
@@ -41,14 +41,14 @@ A list of paths to other JSON files. Biome resolves and applies the options of t
 
 ```json title="biome.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json",
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
   "extends": ["./formatter.json", "./linter.json"]
 }
 ```
 
 ```json title="formatter.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json",
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
   "formatter": {
     "indentSize": 2
   },
@@ -62,7 +62,7 @@ A list of paths to other JSON files. Biome resolves and applies the options of t
 
 ```json title="linter.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json",
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
   "linter": {
     "rules": {
       "complexity": {
diff --git a/website/src/content/docs/zh-cn/guides/getting-started.mdx b/website/src/content/docs/zh-cn/guides/getting-started.mdx
index 6246f1a70982..c22c644547c4 100644
--- a/website/src/content/docs/zh-cn/guides/getting-started.mdx
+++ b/website/src/content/docs/zh-cn/guides/getting-started.mdx
@@ -43,7 +43,7 @@ import PackageManagerCommand from "@src/components/PackageManagerCommand.astro";
 
 ```json title="biome.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json",
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
   "organizeImports": {
     "enabled": false
   },
diff --git a/website/src/content/docs/zh-cn/reference/configuration.mdx b/website/src/content/docs/zh-cn/reference/configuration.mdx
index 538503c3d958..298ff143179a 100644
--- a/website/src/content/docs/zh-cn/reference/configuration.mdx
+++ b/website/src/content/docs/zh-cn/reference/configuration.mdx
@@ -27,7 +27,7 @@ import LintGroups from "@src/components/generated/Groups.astro";
 
 ```json title="biome.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json"
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json"
 }
 ```
 
@@ -37,14 +37,14 @@ import LintGroups from "@src/components/generated/Groups.astro";
 
 ```json title="biome.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json",
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
   "extends": ["./formatter.json", "./linter.json"]
 }
 ```
 
 ```json title="formatter.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json",
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
   "formatter": {
     "indentSize": 2
   },
@@ -58,7 +58,7 @@ import LintGroups from "@src/components/generated/Groups.astro";
 
 ```json title="linter.json"
 {
-  "$schema": "https://biomejs.dev/schemas/1.4.0/schema.json",
+  "$schema": "https://biomejs.dev/schemas/1.5.1/schema.json",
   "linter": {
     "rules": {
       "complexity": {