We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39d9341 commit db29c77Copy full SHA for db29c77
packages/core/src/codewhisperer/service/transformByQ/transformFileHandler.ts
@@ -153,7 +153,6 @@ export function validateCustomVersionsFile(fileContents: string) {
153
}
154
155
// return an error message, or undefined if item is valid
156
-// validate each dependency and plugin: identifier should be in format groupId:artifactId and originType should be FIRST_PARTY or THIRD_PARTY
157
function validateItem(item: any, validOriginTypes: string[] = ['FIRST_PARTY', 'THIRD_PARTY']) {
158
if (!/^[^\s:]+:[^\s:]+$/.test(item.identifier)) {
159
getLogger().info(`CodeTransformation: Invalid identifier format: ${item.identifier}`)
0 commit comments