This repository has been archived on 2024-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
2022-08-26 00:30:54 +02:00

26 lines
377 B
TypeScript

import addFormats from 'ajv-formats'
import Ajv from 'ajv'
export const ajv = addFormats(
new Ajv({
allErrors: true,
verbose: true
}),
[
'date-time',
'time',
'date',
'email',
'hostname',
'ipv4',
'ipv6',
'uri',
'uri-reference',
'uuid',
'uri-template',
'json-pointer',
'relative-json-pointer',
'regex'
]
)