fix(fix build): add ts-ignore

This commit is contained in:
Cameron Clark 2021-01-15 11:23:16 +00:00
parent 5711023371
commit 8454395143

View File

@ -11,6 +11,8 @@ extend('mustBeUrl', (value: string): boolean => {
extend('bothPasswordsSame', {
params: ['target'],
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
validate(value, { target }) {
return value === target;
}