|
1 | 1 | { |
2 | 2 | "name": "vscode-python-typehint", |
3 | | - "displayName": "Python Type Hint", |
4 | | - "version": "1.2.0", |
5 | | - "publisher": "njqdev", |
6 | | - "description": "Type hint completion for Python.", |
7 | | - "icon": "images/icon.png", |
| 3 | + "displayName": "Python Type Hint", |
| 4 | + "version": "1.2.0", |
| 5 | + "publisher": "njqdev", |
| 6 | + "description": "Type hint completion for Python.", |
| 7 | + "icon": "images/icon.png", |
8 | 8 | "repository": { |
9 | 9 | "type": "git", |
10 | 10 | "url": "https://github.com/njqdev/vscode-python-typehint" |
11 | 11 | }, |
12 | | - "license": "MIT", |
| 12 | + "license": "MIT", |
13 | 13 | "categories": [ |
14 | 14 | "Programming Languages" |
15 | | - ], |
16 | | - "keywords": [ |
17 | | - "Python", |
18 | | - "typehint", |
19 | | - "completion", |
20 | | - "autocompletion", |
21 | | - "parameter" |
22 | | - ], |
23 | | - "engines": { |
| 15 | + ], |
| 16 | + "keywords": [ |
| 17 | + "Python", |
| 18 | + "typehint", |
| 19 | + "completion", |
| 20 | + "autocompletion", |
| 21 | + "parameter" |
| 22 | + ], |
| 23 | + "engines": { |
24 | 24 | "vscode": "^1.43.0" |
25 | 25 | }, |
26 | 26 | "activationEvents": [ |
|
39 | 39 | ".py" |
40 | 40 | ] |
41 | 41 | } |
42 | | - ], |
43 | | - "configuration": { |
44 | | - "title": "Python Type Hint", |
45 | | - "properties": { |
46 | | - "workspace.searchEnabled": { |
47 | | - "type": "boolean", |
48 | | - "default": true, |
49 | | - "description": "If enabled, other files in the workspace are searched when estimating types for a parameter. Disabling this will increase performance, but may reduce estimation accuracy." |
50 | | - }, |
51 | | - "workspace.searchLimit": { |
52 | | - "type": "number", |
53 | | - "default": 20, |
54 | | - "description": "The maximum number of files searched in a workspace search." |
55 | | - } |
56 | | - } |
57 | | - } |
| 42 | + ], |
| 43 | + "configuration": { |
| 44 | + "title": "Python Type Hint", |
| 45 | + "properties": { |
| 46 | + "workspace.searchEnabled": { |
| 47 | + "type": "boolean", |
| 48 | + "default": true, |
| 49 | + "description": "If enabled, other files in the workspace are searched when estimating types for a parameter. Disabling this will increase performance, but may reduce estimation accuracy." |
| 50 | + }, |
| 51 | + "workspace.searchLimit": { |
| 52 | + "type": "number", |
| 53 | + "default": 20, |
| 54 | + "description": "The maximum number of files searched in a workspace search." |
| 55 | + } |
| 56 | + } |
| 57 | + } |
58 | 58 | }, |
59 | 59 | "scripts": { |
60 | 60 | "package": "vsce package", |
61 | | - "publish": "vsce publish", |
62 | | - |
63 | | - "vscode:prepublish": "webpack --mode production", |
64 | | - "compile": "webpack --mode none", |
65 | | - "watch": "webpack --mode none --watch", |
66 | | - |
67 | | - "postinstall": "node node_modules/vscode/bin/install", |
68 | | - "just-test": "node node_modules/vscode/bin/test", |
69 | | - "test-compile": "tsc -p ./ && npm run compile", |
70 | | - "test": "npm run test-compile && node node_modules/vscode/bin/test" |
| 61 | + "publish": "vsce publish", |
| 62 | + "vscode:prepublish": "webpack --mode production", |
| 63 | + "compile": "webpack --mode none", |
| 64 | + "watch": "webpack --mode none --watch", |
| 65 | + "postinstall": "node node_modules/vscode/bin/install", |
| 66 | + "just-test": "node node_modules/vscode/bin/test", |
| 67 | + "test-compile": "tsc -p ./ && npm run compile", |
| 68 | + "test": "npm run test-compile && node node_modules/vscode/bin/test" |
71 | 69 | }, |
72 | 70 | "devDependencies": { |
73 | 71 | "@types/glob": "^7.1.1", |
|
0 commit comments