-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
60 lines (60 loc) · 1.29 KB
/
extension.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
{
"id": "builtin.language-basics-json",
"name": "Language Basics JSON",
"description": "Provides syntax highlighting and bracket matching in JSON files.",
"languages": [
{
"id": "json",
"extensions": [
".json",
".bowerrc",
".jscsrc",
".webmanifest",
".js.map",
".css.map",
".ts.map",
".har",
".jslintrc",
".jsonld",
".geojson",
".ipynb",
".jsonc",
".eslintrc",
".eslintrc.json",
".jsfmtrc",
".jshintrc",
".swcrc",
".hintrc",
".babelrc",
".prettierrc",
".sublime-project",
".code-snippets",
".tour",
".heapsnapshot",
".code-workspace",
".code-profile",
".github-issues"
],
"fileNames": [
"composer.lock",
".watchmanconfig",
".all-contributorsrc",
".imgbotconfig",
".stylelintrc",
".parcelrc",
".publishrc",
".whitesource",
".mention-bot",
"pdfjs.config",
"tsconfig.tsbuildinfo",
".gdntsa",
".nycrc",
"manifest.webapp",
".alexrc",
".yarn-integrity",
".tsbuildinfo"
],
"tokenize": "src/tokenizeJson.js"
}
]
}