Skip to content

Commit b6e8aab

Browse files
committed
Webpack
1 parent 8f714c0 commit b6e8aab

14 files changed

+3959
-131
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
out
1+
dist
22
node_modules
3+
out
34
.vscode-test/
45
*.vsix

.vscode/launch.json

Lines changed: 26 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,32 @@
11
// A launch configuration that compiles the extension and then opens it inside a new window
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
52
{
63
"version": "0.2.0",
74
"configurations": [
8-
{
9-
"name": "Run Extension",
10-
"type": "extensionHost",
11-
"request": "launch",
12-
"runtimeExecutable": "${execPath}",
13-
"args": [
14-
"--disable-extensions=1",
15-
"--extensionDevelopmentPath=${workspaceFolder}"
16-
],
17-
"outFiles": [
18-
"${workspaceFolder}/out/**/*.js"
19-
],
20-
"preLaunchTask": "${defaultBuildTask}"
21-
},
22-
{
23-
"name": "Extension Tests",
24-
"type": "extensionHost",
25-
"request": "launch",
26-
"runtimeExecutable": "${execPath}",
27-
"args": [
28-
"--extensionDevelopmentPath=${workspaceFolder}",
29-
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
30-
],
31-
"outFiles": [
32-
"${workspaceFolder}/out/test/**/*.js"
33-
],
34-
"preLaunchTask": "${defaultBuildTask}"
35-
}
5+
{
6+
"name": "Run Extension",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": [
11+
"--disable-extensions",
12+
"--extensionDevelopmentPath=${workspaceFolder}"
13+
],
14+
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
15+
"preLaunchTask": "npm: test-compile"
16+
},
17+
{
18+
"name": "Extension Tests",
19+
"type": "extensionHost",
20+
"request": "launch",
21+
"runtimeExecutable": "${execPath}",
22+
"args": [
23+
"${workspaceFolder}/testworkspace",
24+
"--disable-extensions",
25+
"--extensionDevelopmentPath=${workspaceFolder}",
26+
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
27+
],
28+
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
29+
"preLaunchTask": "npm: test-compile"
30+
}
3631
]
3732
}

.vscode/settings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Place your settings in this file to overwrite default and user settings.
1+
// Overwrite default and user settings.
22
{
33
"files.exclude": {
4-
"out": false // set this to true to hide the "out" folder with the compiled JS files
4+
"out": false // do not hide the "out" folder with the compiled JS files
55
},
66
"search.exclude": {
7-
"out": true // set this to false to include "out" folder in search results
7+
"out": true // exclude "out" folder in search results
88
},
99
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
1010
"typescript.tsc.autoDetect": "off",

.vscodeignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,10 @@ vsc-extension-quickstart.md
88
**/.eslintrc.json
99
**/*.map
1010
**/*.ts
11+
12+
# Webpack related
13+
node_modules
14+
out/
15+
src/
16+
tsconfig.json
17+
webpack.config.json

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
# vscode-python-autohint README
22

3-
This extension provides type hint autocompletion for Python.
3+
Provides type hint auto-completion for Python.
44

5-
## Features
5+
![](demo.gif)
66

7-
* Estimates the correct type to provide as an autocompletion item.
7+
## Features
88

9-
![](demo.gif)
9+
* Estimates the correct type to provide as a completion item.
1010

11+
* Searches Python files in the workspace for type estimation purposes.
1112

1213
## Installation
1314

14-
The extension is not published yet.
15+
Get this extension from the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=).
1516

1617
## Known Issues
1718

images/icon.png

14.8 KB
Loading

0 commit comments

Comments
 (0)