1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-14 02:33:38 +02:00

vscode: fix invalid examples

This commit is contained in:
natsukium 2022-10-29 10:01:25 +09:00 committed by Robert Helgesson
parent f520832a47
commit 39c1e6704a
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -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 = ''