From 14ede298f9ab2431c4030d7b80c8bfb8e5faa1dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Ch=C5=82odnicki?= Date: Mon, 18 Nov 2024 10:32:23 +0100 Subject: [PATCH] docs: minor updates to outdated content (#43) --- README.md | 6 +++--- sublime-package.json | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f53be08..1d511d6 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Open the configuration file using the Command Palette `Preferences: LSP-biome Settings` command or from the Sublime menu. > **Note** -> By default Biome requires a configuration file (`biome.json`) in the root of the project to enable syntax errors, formatting and linting. This can be changed through the `biome.requireConfiguration` option in `Preferences: LSP-biome Settings`. See more information on [configuring Biome using the configuration file](https://biomejs.dev/guides/how-biome-works/) in the official documenation. +> Biome requires a configuration file (`biome.json`) in the root of the project to configure specific rules and other behavior. Refer to [Configure Biome](https://biomejs.dev/guides/configure-biome/) section in the official documentation. ## Biome Resolution @@ -49,7 +49,7 @@ To enable fix on save, open `Preferences: LSP Settings` from the _Command Palett ```json { "lsp_code_actions_on_save": { - "quickfix.biome": true + "source.fixAll.biome": true, } } ``` @@ -73,7 +73,7 @@ You can add the following to `Preferences: LSP Settings` if you want the action ```json { "lsp_code_actions_on_save":{ - "source.organizeImports.biome": true + "source.organizeImports.biome": true, } } ``` diff --git a/sublime-package.json b/sublime-package.json index 85a0cbb..f0d3916 100644 --- a/sublime-package.json +++ b/sublime-package.json @@ -74,6 +74,9 @@ "properties": { "lsp_code_actions_on_save": { "properties": { + "source.fixAll.biome": { + "type": "boolean" + }, "source.organizeImports.biome": { "type": "boolean" },