Skip to content

Commit

Permalink
Rename labels
Browse files Browse the repository at this point in the history
  • Loading branch information
olih committed Jan 7, 2025
1 parent 330d457 commit d8c0569
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/incy-wincy-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const programmingLanguageLabels = {

const programmingLanguage = z

Check failure on line 13 in src/incy-wincy-model.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and macOS-latest

'programmingLanguage' is declared but its value is never read.

Check failure on line 13 in src/incy-wincy-model.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and ubuntu-latest

'programmingLanguage' is declared but its value is never read.
.enum(programmingLanguageKey)
.describe(describeEnum('Encryption strength:', programmingLanguageLabels));
.describe(describeEnum('Programming Language:', programmingLanguageLabels));

const blockKindKey = [
'class',
Expand All @@ -21,6 +21,7 @@ const blockKindKey = [
'function',
'test',
'other',
'import',
] as const;

const blockKindlabels = {
Expand All @@ -30,8 +31,9 @@ const blockKindlabels = {
function: 'Function',
test: 'Test',
other: 'Other',
import: 'Import',
};

const blockKind = z

Check failure on line 37 in src/incy-wincy-model.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and macOS-latest

'blockKind' is declared but its value is never read.

Check failure on line 37 in src/incy-wincy-model.ts

View workflow job for this annotation

GitHub Actions / Build, lint, and test on Node 18.x and ubuntu-latest

'blockKind' is declared but its value is never read.
.enum(blockKindKey)
.describe(describeEnum('Encryption strength:', blockKindlabels));
.describe(describeEnum('Language block kind:', blockKindlabels));

0 comments on commit d8c0569

Please sign in to comment.