Skip to content

Commit

Permalink
docs: minor updates to outdated content (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl authored Nov 18, 2024
1 parent bb91991 commit 14ede29
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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,
}
}
```
Expand All @@ -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,
}
}
```
Expand Down
3 changes: 3 additions & 0 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@
"properties": {
"lsp_code_actions_on_save": {
"properties": {
"source.fixAll.biome": {
"type": "boolean"
},
"source.organizeImports.biome": {
"type": "boolean"
},
Expand Down

0 comments on commit 14ede29

Please sign in to comment.