Skip to content

Commit

Permalink
test: ignore eslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Oct 26, 2023
1 parent aa40916 commit a077d50
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/schema/trans.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { z } from 'zod';

const TRANS_GROUP = z.literal('Trans');
const HEX_COLOR = z.string().regex(/^#[0-9A-F]{6}$/);
// eslint-disable-next-line @typescript-eslint/no-loss-of-precision
const INT64MAX = z.literal(9_223_372_036_854_775_807);
const RANGE_0_255 = z.number().int().min(0).max(255);
const RANGE_0_256 = z.number().int().min(0).max(256);
Expand Down

0 comments on commit a077d50

Please sign in to comment.