-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.57 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
{
"name": "acsl-ansi-iso-c-specification-language",
"displayName": "ACSL: ANSI/ISO C Specification Language",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.65.0"
},
"publisher": "misterzurg",
"author": {
"name": "Denis Zakharov"
},
"repository": {
"type": "git",
"url": "https://github.com/MisterZurg/acsl-ansi-iso-c-specification-language"
},
"bugs": {
"url": "https://github.com/MisterZurg/issues"
},
"icon": "media/acsl-logo.png",
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "acsl",
"aliases": [
"ACSL: ANSI/ISO C Specification Language",
"acsl"
],
"extensions": [
".c",
".cpp"
],
"configuration": "./language-configuration.json"
}],
"grammars": [
{
"language": "acsl",
"scopeName": "source.acsl",
"path": "./syntaxes/acsl.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.c": "c",
"meta.embedded.block.cpp": "cpp"
}
},
{
"language": "c",
"scopeName": "source.c",
"path": "./syntaxes/c.tmLanguage.json"
},
{
"language": "cpp",
"scopeName": "source.cpp",
"path": "./syntaxes/cpp.tmLanguage.json"
}
]
}
}