Skip to content

Commit b8b6584

Browse files
committed
Adding copyright snippet
1 parent 3cac59c commit b8b6584

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.vscode/shared.code-snippets

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
// Each snippet is defined under a snippet name and has a scope, prefix, body and
3+
// description. The scope defines in watch languages the snippet is applicable. The prefix is what is
4+
// used to trigger the snippet and the body will be expanded and inserted.Possible variables are:
5+
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
6+
// Placeholders with the same ids are connected.
7+
// Example:
8+
"MSFT Copyright Header": {
9+
"scope": "javascript,typescript,css,rust",
10+
"prefix": [
11+
"header",
12+
"stub",
13+
"copyright"
14+
],
15+
"body": [
16+
"/*---------------------------------------------------------------------------------------------",
17+
" * Copyright (c) Microsoft Corporation. All rights reserved.",
18+
" * Licensed under the MIT License. See License.txt in the project root for license information.",
19+
" *--------------------------------------------------------------------------------------------*/",
20+
"",
21+
"$0"
22+
],
23+
"description": "Insert Copyright Statement"
24+
}
25+
}

0 commit comments

Comments
 (0)