Skip to content

Commit 33a7650

Browse files
authored
Merge branch 'main' into fix/biome-generated-config
2 parents 7f03e5e + 9118768 commit 33a7650

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ format-check:
1616

1717
format-generated:
1818
pnpm install
19-
pnpm biome lint --write --unsafe --config-path scripts/templates/biome.generated.json --only correctness/noUnusedImports --only correctness/noUnusedVariables packages_generated/
19+
# Cleanup unused imports/variables in generated TS with dedicated config
20+
pnpm biome lint --write --unsafe --config-path scripts/templates/biome.generated.json packages_generated/
2021

2122
typing:
2223
pnpm run typecheck

packages_generated/audit_trail/src/v1alpha1/validation-rules.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export const ListEventsRequest = {
4747
lessThanOrEqual: 1000,
4848
},
4949
productName: {
50-
pattern: /^[a-z]+(-[a-z]+)*$/,
50+
pattern: /^[a-z0-9]+(-[a-z0-9]+)*$/,
5151
},
5252
resourceId: {
5353
maxLength: 100,

0 commit comments

Comments
 (0)