-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"icon": "terraform.png",
"name": "terraform-advanced-syntax-highlighting",
"displayName": "Terraform Advanced Syntax Highlighting",
"description": "Advanced Syntax Highlighting for all Terraform file types.",
"version": "1.4.3",
"publisher": "pjmiravalle",
"engines": {
"vscode": "^1.39.0"
},
"bugs": {
"url": "https://github.com/pjmiravalle/vscode-terraform-advanced-syntax-highlighting/issues",
"email": "[email protected]"
},
"categories": [
"Programming Languages",
"Other",
"Formatters",
"Linters"
],
"keywords": [
"devops",
"terraform",
"terraform syntax highlighting",
"syntax highlighting",
"hcl"
],
"repository": {
"type": "git",
"url": "https://github.com/pjmiravalle/vscode-terraform-advanced-syntax-highlighting"
},
"contributes": {
"languages": [
{
"id": "terraform",
"aliases": [
"Terraform",
"terraform"
],
"extensions": [
".tf",
".tfvars",
".hcl"
],
"configuration": "./language-configuration.json"
},
{
"id": "json",
"extensions": [
".tfstate",
".tpl"
]
}
],
"grammars": [
{
"language": "terraform",
"scopeName": "scope.terraform",
"path": "./syntaxes/terraform.json"
}
]
}
}