-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.55 KB
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
64
{
"private": false,
"name": "python-docstring-highlighter",
"displayName": "Python Docstring Highlighter",
"description": "Syntax highlighting for python docstring.",
"icon": "assets/icon.png",
"version": "0.2.4",
"keywords": [
"python",
"docstring",
"highlighter",
"google",
"numpy",
"sphinx",
"markdown",
"md",
"restructuredtext",
"rest"
],
"author": {
"name": "Rodolphe Barbanneau",
"email": "rodolphe.barbanneau@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodolphebarbanneau/python-docstring-highlighter.git"
},
"bugs": {
"url": "https://github.com/rodolphebarbanneau/python-docstring-highlighter/issues"
},
"engines": {
"vscode": "^1.65.2"
},
"publisher": "rodolphebarbanneau",
"categories": [
"Programming Languages",
"Themes",
"Visualization"
],
"contributes": {
"grammars": [
{
"scopeName": "source.docstring.python",
"path": "./syntaxes/base.tmLanguage.json",
"injectTo": ["source.python"]
},
{
"scopeName": "source.docstring.google.python",
"path": "./syntaxes/google.tmLanguage.json",
"injectTo": ["source.python"]
},
{
"scopeName": "source.docstring.numpy.python",
"path": "./syntaxes/numpy.tmLanguage.json",
"injectTo": ["source.python"]
},
{
"scopeName": "source.docstring.sphinx.python",
"path": "./syntaxes/sphinx.tmLanguage.json",
"injectTo": ["source.python"]
}
]
}
}