From a81f796538787c5b7dd15c4a5074fd9ca8e8259f Mon Sep 17 00:00:00 2001 From: Jochen Kressin Date: Mon, 11 Dec 2023 16:41:33 +0100 Subject: [PATCH] Linting Signed-off-by: Jochen Kressin --- server/index.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/server/index.ts b/server/index.ts index 9fd40b01d..68a20f533 100644 --- a/server/index.ts +++ b/server/index.ts @@ -17,7 +17,7 @@ import { schema, TypeOf } from '@osd/config-schema'; import { PluginInitializerContext, PluginConfigDescriptor } from '../../../src/core/server'; import { SecurityPlugin } from './plugin'; import { AuthType } from '../common'; -import { JWT_DEFAULT_EXTRA_STORAGE_OPTIONS } from "./auth/types/jwt/jwt_auth"; +import { JWT_DEFAULT_EXTRA_STORAGE_OPTIONS } from './auth/types/jwt/jwt_auth'; const validateAuthType = (value: string[]) => { const supportedAuthTypes = [ @@ -239,7 +239,10 @@ export const configSchema = schema.object({ defaultValue: JWT_DEFAULT_EXTRA_STORAGE_OPTIONS.cookiePrefix, minLength: 2, }), - additional_cookies: schema.number({ min: 1, defaultValue: JWT_DEFAULT_EXTRA_STORAGE_OPTIONS.additionalCookies }), + additional_cookies: schema.number({ + min: 1, + defaultValue: JWT_DEFAULT_EXTRA_STORAGE_OPTIONS.additionalCookies, + }), }), }) ),