From 3f2387cfa1a8d7ba99e7fdb8f06aa57d03d7f358 Mon Sep 17 00:00:00 2001 From: Claus-Peter Huebner Date: Wed, 7 Feb 2024 23:35:27 +0100 Subject: [PATCH] linting --- backend/src/graphql/arg/UpdateUserInfosArgs.ts | 4 +++- backend/tsconfig.json | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/backend/src/graphql/arg/UpdateUserInfosArgs.ts b/backend/src/graphql/arg/UpdateUserInfosArgs.ts index f2244c999..991680e29 100644 --- a/backend/src/graphql/arg/UpdateUserInfosArgs.ts +++ b/backend/src/graphql/arg/UpdateUserInfosArgs.ts @@ -1,8 +1,10 @@ + import { IsBoolean, IsInt, IsString } from 'class-validator' import { ArgsType, Field, InputType, Int } from 'type-graphql' import { Location } from '@model/Location' -import { isValidLocation } from '@validator/Location' + +import { isValidLocation } from '@/graphql/validator/Location' @InputType() @ArgsType() diff --git a/backend/tsconfig.json b/backend/tsconfig.json index d04b5aaab..28ddf1c38 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -53,7 +53,6 @@ "@enum/*": ["src/graphql/enum/*"], "@model/*": ["src/graphql/model/*"], "@union/*": ["src/graphql/union/*"], - "@validator/*": ["src/graphql/validator/*"], "@repository/*": ["src/typeorm/repository/*"], "@typeorm/*": ["src/typeorm/*"], "@test/*": ["test/*"],