diff --git a/README.md b/README.md index c8fd4aa..622822b 100644 --- a/README.md +++ b/README.md @@ -40,11 +40,11 @@ per workspace in Visual Studio Code. | Settings | Default | Description | | ------------------------------------ | ----------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| args | `[]` | Additional command-line arguments to pass to `ruff`, e.g., `"args": ["--config=/path/to/pyproject.toml"]`. Supports a subset of Ruff's command-line arguments, ignoring those that are required to operate the LSP, like `--force-exclude` and `--verbose`. | +| lint.args | `[]` | Additional command-line arguments to pass to `ruff check`, e.g., `"args": ["--config=/path/to/pyproject.toml"]`. Supports a subset of Ruff's command-line arguments, ignoring those that are required to operate the LSP, like `--force-exclude` and `--verbose`. | | path | `[]` | Path to a custom `ruff` executable, e.g., `["/path/to/ruff"]`. | | interpreter | `[]` | Path to a Python interpreter to use to run the linter server. | | importStrategy | `fromEnvironment` | Strategy for loading the `ruff` executable. `fromEnvironment` picks up Ruff from the environment, falling back to the bundled version if needed. `useBundled` uses the version bundled with the extension. | -| run | `onType` | Run Ruff on every keystroke (`onType`) or on save (`onSave`). | +| lint.run | `onType` | Run Ruff on every keystroke (`onType`) or on save (`onSave`). | | enable | `true` | Whether to enable the Ruff extension. Modifying this setting requires restarting VS Code to take effect. | | organizeImports | `true` | Whether to register Ruff as capable of handling `source.organizeImports` actions. | | fixAll | `true` | Whether to register Ruff as capable of handling `source.fixAll` actions. |