Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
feat: build command execution wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
seanwu1105 committed Aug 14, 2022
1 parent 4cd7bf0 commit 55a2ed3
Show file tree
Hide file tree
Showing 11 changed files with 1,269 additions and 2,323 deletions.
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Attach to QML Lint Server",
"type": "node",
"request": "attach",
"port": 6009,
"restart": true,
"outFiles": ["${workspaceFolder}/out/**/*.js"]
},
{
"name": "Extension Tests",
"type": "extensionHost",
Expand All @@ -24,5 +32,11 @@
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
}
],
"compounds": [
{
"name": "Run Extension with Servers",
"configurations": ["Run Extension", "Attach to QML Lint Server"]
}
]
}
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Visual Studio Code Extension Qt for Python

## Next Release TODOs

- [ ] `qmllint` integration
- [ ] `qmllint` language server
- [ ] Unit tests for ALL TypeScript scripts
- [ ] Support user-defined tool args
- [ ] Support user-defined tool paths
- [ ] Resolve predefined variables in tool paths
- [ ] Languages highlighting
- [ ] Simple tools integration
- [ ] Continuous compilation

[![build](https://github.com/seanwu1105/vscode-qt-for-python/workflows/build/badge.svg)](https://github.com/seanwu1105/vscode-qt-for-python/actions?query=workflow:build)
[![version](https://img.shields.io/visual-studio-marketplace/v/seanwu.vscode-qt-for-python.svg)](https://marketplace.visualstudio.com/items?itemName=seanwu.vscode-qt-for-python)
[![rating](https://img.shields.io/visual-studio-marketplace/r/seanwu.vscode-qt-for-python.svg)](https://marketplace.visualstudio.com/items?itemName=seanwu.vscode-qt-for-python)
Expand Down
Loading

0 comments on commit 55a2ed3

Please sign in to comment.