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