Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion extension.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ schema_version = 1
version = "0.4.7"

[language_servers.oxlint]
code_actions_kind = ["quickfix", "source.fixAll.oxc"]
# Zed reads this list only when the server advertises no code action kinds in its
# initialize result, so it mirrors the kinds oxlint advertises.
code_action_kinds = [
"quickfix",
"source.fixAll.oxc",
"source.fixAllDangerous.oxc",
"source.fixAll",
]
language = "JavaScript"
languages = [
"JavaScript",
Expand Down