Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/make/package.json
3290 views
1
{
2
"name": "make",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "*"
10
},
11
"scripts": {
12
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin fadeevab/make.tmbundle Syntaxes/Makefile.plist ./syntaxes/make.tmLanguage.json"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"languages": [
17
{
18
"id": "makefile",
19
"aliases": [
20
"Makefile",
21
"makefile"
22
],
23
"extensions": [
24
".mak",
25
".mk"
26
],
27
"filenames": [
28
"Makefile",
29
"makefile",
30
"GNUmakefile",
31
"OCamlMakefile"
32
],
33
"firstLine": "^#!\\s*/usr/bin/make",
34
"configuration": "./language-configuration.json"
35
}
36
],
37
"grammars": [
38
{
39
"language": "makefile",
40
"scopeName": "source.makefile",
41
"path": "./syntaxes/make.tmLanguage.json",
42
"tokenTypes": {
43
"string.interpolated": "other"
44
}
45
}
46
],
47
"configurationDefaults": {
48
"[makefile]": {
49
"editor.insertSpaces": false
50
}
51
}
52
},
53
"repository": {
54
"type": "git",
55
"url": "https://github.com/microsoft/vscode.git"
56
}
57
}
58
59