From c6f347d470a3a713d376f0c560b0fe699da70ea3 Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Mon, 4 Jul 2022 20:04:28 +0900 Subject: [PATCH] `npm run format` --- src/schemas.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schemas.ts b/src/schemas.ts index 5667eb0..f37fd45 100644 --- a/src/schemas.ts +++ b/src/schemas.ts @@ -39,7 +39,7 @@ export const ConfigurationOptionsSchema = z .partial() .refine( obj => !(obj.allow_licenses && obj.deny_licenses), - "Your workflow file has both an allow_licenses list and deny_licenses list, but you can only set one or the other." + 'Your workflow file has both an allow_licenses list and deny_licenses list, but you can only set one or the other.' ) export const ChangesSchema = z.array(ChangeSchema)