ZIm/docs/src/languages
William Villeneuve ca187c8386
Allow users to configure ESLint's rulesCustomizations settings (#11135)
https://github.com/zed-industries/zed/assets/2072378/18f0bb28-0546-4234-a11f-39af6c9fcc12

`rulesCustomizations` is an array of rule severity overrides. Globs can
be used to apply default severities for multiple rules. See
[docs](553e632fb4/README.md (L312-L333))
& [type
definitions](553e632fb4/%24shared/settings.ts (L168))

Example Zed `settings.json` to override all eslint errors to warnings:
```jsonc
{
    "lsp": {
        "eslint": {
            "settings": {
                "rulesCustomizations": [
                    // set all eslint errors/warnings to show as warnings
                    { "rule": "*", "severity": "warn" }
                ]
            }
        }
    }
}
```


Release Notes:

- Added support for configuring ESLint's `rulesCustomizations` settings,
ie. `{"lsp": {"eslint": {"settings": {"rulesCustomizations": [{"rule":
"*", "severity": "warn"}]}}}}`
2024-04-29 11:41:48 +03:00
..
astro.md Add Astro Support (#6896) 2024-02-12 10:10:40 -08:00
c.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
clojure.md Fix license generation and Closure LSP repo link (#8876) 2024-03-05 10:43:02 +02:00
cpp.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
csharp.md C# Support: Add treesitter and OmniSharp LSP support (#6908) 2024-01-30 09:54:39 -08:00
css.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
deno.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
elixir.md Workspace configuration for elixir-ls LSP (#9330) 2024-03-25 09:35:28 +01:00
elm.md Improve elm-language-server configuration (#7342) 2024-02-04 01:57:24 +02:00
erb.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
erlang.md Add syntax highlighting and LSP (erlang_lsp) for Erlang (#7093) 2024-02-01 18:54:26 +02:00
gleam.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
go.md Format docs with Prettier (#8134) 2024-02-21 13:21:22 -05:00
haskell.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
html.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
javascript.md Allow users to configure ESLint's rulesCustomizations settings (#11135) 2024-04-29 11:41:48 +03:00
json.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
lua.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
markdown.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
ocaml.md Format docs with Prettier (#8134) 2024-02-21 13:21:22 -05:00
php.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
prisma.md Add Prisma language support (#7267) 2024-02-10 10:26:39 -08:00
proto.md Add protobuf support (#6748) 2024-01-30 21:08:10 +02:00
purescript.md Re-enable PureScript on Linux and Windows (#8252) 2024-02-23 13:19:36 +02:00
python.md Fix link in python.md (#7735) 2024-02-14 10:30:30 -08:00
racket.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
ruby.md Adjust heading levels in docs (#7163) 2024-01-31 12:34:31 -05:00
rust.md Update docs for inlay hints (#8178) 2024-02-22 11:40:49 +02:00
scheme.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
svelte.md Format docs with Prettier (#8134) 2024-02-21 13:21:22 -05:00
terraform.md Add language server for Terraform (#7657) 2024-02-26 17:08:49 -08:00
toml.md Adjust heading levels in docs (#7163) 2024-01-31 12:34:31 -05:00
tsx.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
typescript.md Format docs with Prettier (#8134) 2024-02-21 13:21:22 -05:00
uiua.md Update languages doc (#10019) 2024-04-01 12:02:58 +03:00
vue.md Update languages doc (#10019) 2024-04-01 12:02:58 +03:00
yaml.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00
zig.md docs: Add initial language settings documentation (#6957) 2024-01-28 22:07:27 -05:00