Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
10minions-vscode review
LICENSE.md
.firebase
.npm audit
reports 3 vulnerabilities (2 moderate, 1 critical). Removing unused deps may fix this, at least partially.
VSMinionTaskAutoRunner.ts:
if (line.includes('//TODO:')) {
toif (/\/\/ ?TODO:/.test(line)) {
, or something even more generic (as it won't work for languages that have other styles of comments, like python). All TODO comments in my projects use space beforeTODO
..filter((file) => path.extname(file) === '.ts');
Why there's no.js
, '.jsxor
.tsx` support?
extractExecutionIdFromUri.ts:
/^minionTaskId\/([a-z\d\-]+)\/.*/
should be changed to/^minionTaskId\/([a-z\d\-]+)\//
, as the last part is not used.acquireMinionIndex
: Shouldn'tNUM_TOTAL_ROBOTS
be equal toALL_FILL_ROBOT_ICONS.length
instead of being hardcoded?