Allow users to configure ESLint's problems
settings (#9981)
Presently the only available setting under `problems` is `shortenToSingleLine`, which defaults to `false`. Example Zed `settings.json` to shorten eslint error squiggles to only show on the first line of the problem: ```json { "lsp": { "eslint": { "settings": { "problems": { "shortenToSingleLine": true } } } } } ``` Release Notes: - Added support for configuring ESLint `problems` settings, ie. `{"lsp": {"eslint": {"settings": {"problems": {"shortenToSingleLine": true}}}}}` Demo: https://github.com/zed-industries/zed/assets/2072378/379faa75-1f37-4fd1-85da-1510f1397d07
This commit is contained in:
parent
5a2a85a7db
commit
463c16a402
2 changed files with 24 additions and 1 deletions
|
@ -85,3 +85,21 @@ You can configure ESLint's `nodePath` setting (requires Zed `0.127.0`):
|
|||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### Configure ESLint's `problems.shortenToSingleLine`:
|
||||
|
||||
You can configure ESLint's `problems.shortenToSingleLine` setting (requires Zed `0.130.x`):
|
||||
|
||||
```json
|
||||
{
|
||||
"lsp": {
|
||||
"eslint": {
|
||||
"settings": {
|
||||
"problems": {
|
||||
"shortenToSingleLine": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue