vscode: fix invalid examples
This commit is contained in:
parent
f520832a47
commit
39c1e6704a
|
@ -82,7 +82,7 @@ in {
|
|||
default = { };
|
||||
example = literalExpression ''
|
||||
{
|
||||
"files.autoSave" = "off"
|
||||
"files.autoSave" = "off";
|
||||
"[nix]"."editor.tabSize" = 2;
|
||||
}
|
||||
'';
|
||||
|
@ -97,14 +97,14 @@ in {
|
|||
default = { };
|
||||
example = literalExpression ''
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
version = "2.0.0";
|
||||
tasks = [
|
||||
{
|
||||
"type": "shell",
|
||||
"label": "Hello task",
|
||||
"command": "hello",
|
||||
type = "shell";
|
||||
label = "Hello task";
|
||||
command = "hello";
|
||||
}
|
||||
]
|
||||
];
|
||||
}
|
||||
'';
|
||||
description = ''
|
||||
|
|
Loading…
Reference in a new issue