-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
152 lines (152 loc) · 6.23 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "mypy",
"displayName": "Mypy",
"description": "Type checking for Python using mypy",
"author": "Matan Gover",
"repository": {
"type": "git",
"url": "https://github.com/matangover/mypy-vscode"
},
"license": "MIT",
"version": "0.4.0",
"publisher": "matangover",
"icon": "mypy.png",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Programming Languages",
"Linters",
"Other"
],
"activationEvents": [
"onLanguage:python",
"workspaceContains:**/*.py"
],
"contributes": {
"configuration": {
"title": "Mypy",
"type": "object",
"properties": {
"mypy.enabled": {
"type": "boolean",
"default": true,
"scope": "resource",
"description": "Enable or disable Mypy checking. For example, you can disable Mypy for a specific workspace or folder."
},
"mypy.executable": {
"type": "string",
"default": "",
"scope": "resource",
"description": "(Deprecated and unused) Path to mypyls executable",
"deprecationMessage": "The mypyls executable is no longer used. Use mypy.dmypyExecutable instead to point to the dmypy executable.",
"markdownDeprecationMessage": "The mypyls executable is no longer used. Use `#mypy.dmypyExecutable#` instead to point to the dmypy executable."
},
"mypy.dmypyExecutable": {
"type": "string",
"default": "dmypy",
"scope": "resource",
"markdownDescription": "Path to `dmypy` (the mypy daemon). Either a full path or just a name (which must exist in your PATH). You can use substitutions: `${workspaceFolder}` and `~` (home directory)."
},
"mypy.runUsingActiveInterpreter": {
"type": "boolean",
"default": false,
"scope": "resource",
"markdownDescription": "Use the active Python interpreter (selected in the Python extension) to run dmypy itself, instead of the `mypy.dmypyExecutable` setting. Note: your code is always checked against the active interpreter – this setting only controls the interpreter used to run dmypy itself."
},
"mypy.configFile": {
"type": "string",
"default": "",
"scope": "resource",
"markdownDescription": "Mypy config file, relative to the workspace folder. If empty, search in the default locations. See https://mypy.readthedocs.io/en/latest/config_file.html."
},
"mypy.targets": {
"type": "array",
"default": [
"."
],
"scope": "resource",
"items": {
"type": "string"
},
"uniqueItems": true,
"description": "List of paths to analyze, relative to the workspace folder. By default, check the entire workspace folder."
},
"mypy.checkNotebooks": {
"type": "boolean",
"default": false,
"scope": "resource",
"markdownDescription": "Check Python code in Jupyter notebooks."
},
"mypy.mypyExecutable": {
"type": "string",
"default": "mypy",
"scope": "resource",
"markdownDescription": "Path to `mypy` (the mypy executable). Used only for checking Jupyter notebooks. You can use the same substitutions as in the `dmypyExecutable` setting."
},
"mypy.debugLogging": {
"type": "boolean",
"default": false,
"scope": "window",
"markdownDescription": "Enable debug logging for the extension. (Reload the window after changing this setting.)"
},
"mypy.extraArguments": {
"type": "array",
"default": [],
"scope": "resource",
"items": {
"type": "string"
},
"markdownDescription": "A list of extra command-line arguments to append to the `dmypy run` command. Add each argument as a separate item. For a list of options, see [mypy's documentation](https://mypy.readthedocs.io/en/stable/command_line.html)."
}
}
},
"commands": [
{
"command": "mypy.recheckWorkspace",
"title": "Mypy: Recheck Workspace"
},
{
"command": "mypy.restartAndRecheckWorkspace",
"title": "Mypy: Restart Daemon and Recheck Workspace"
}
],
"menus": {
"commandPalette": [
{
"command": "mypy.recheckWorkspace",
"when": "mypy.activated"
},
{
"command": "mypy.restartAndRecheckWorkspace",
"when": "mypy.activated"
}
]
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && mocha out/mypy.test.js"
},
"devDependencies": {
"@types/async-lock": "^1.1.2",
"@types/child-process-promise": "^2.2.1",
"@types/mocha": "^9.0.0",
"@types/node": "^12.11.7",
"@types/promise.allsettled": "^1.0.3",
"@types/vscode": "^1.70.0",
"mocha": "^9.1.2",
"typescript": "^4.0.2"
},
"dependencies": {
"async-lock": "^1.2.8",
"child-process-promise": "^2.2.1",
"lookpath": "^1.2.0",
"promise.allsettled": "^1.0.4",
"shlex": "^2.0.2",
"untildify": "^4.0.0"
}
}