Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 11 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,16 @@
"default": "~/.cache/elixir-tools/nextls/bin/",
"markdownDescription": "Overrides the default installation directory for the **Next LS** server binary."
},
"elixir-tools.nextLS.extensions.credo.enable": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether the Credo extension is activated."
},
"elixir-tools.nextLS.extensions.credo.cli_options": {
"type": "array",
"default": [],
"markdownDescription": "Configures the CLI options to pass to the Credo extension."
},
"elixir-tools.nextLS.trace.server": {
"type": "string",
"scope": "window",
Expand Down Expand Up @@ -195,4 +205,4 @@
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1"
}
}
}
1 change: 1 addition & 0 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ async function activateNextLS(
// eslint-disable-next-line @typescript-eslint/naming-convention
mix_target: config.get("MIX_TARGET"),
experimental: config.get("experimental"),
extensions: config.get("extensions"),
},
documentSelector: [
{ scheme: "file", language: "elixir" },
Expand Down