From 18f1b78ca42f8a75ac1f245987ed0e11ad7994cb Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Tue, 31 Dec 2024 11:01:52 -0500 Subject: [PATCH] format --- src/lib/components/Actions/Button.svelte | 2 +- src/lib/components/Actions/index.ts | 2 +- src/lib/components/DataInput/TextInput.stories.svelte | 2 +- src/lib/components/DataInput/TextInput.svelte | 2 +- src/lib/components/DataInput/Textarea.stories.svelte | 2 +- src/lib/components/DataInput/Textarea.svelte | 2 +- src/lib/components/DataInput/index.ts | 2 +- src/lib/regex/index.ts | 2 +- src/lib/regex/phone.ts | 2 +- src/lib/server/pothos/schema/index.ts | 2 +- src/lib/server/twilio/index.ts | 2 +- src/lib/server/twilio/twilio.client.ts | 2 +- src/lib/server/twilio/twilio.config.ts | 2 +- src/lib/server/yoga/context.ts | 2 +- src/routes/app/+page.svelte | 2 +- src/routes/app/sms/+page.server.ts | 2 +- src/routes/app/sms/+page.svelte | 2 +- src/routes/login/+page.svelte | 2 +- svelte.config.js | 4 ++-- 19 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/lib/components/Actions/Button.svelte b/src/lib/components/Actions/Button.svelte index 909d0ee..f550841 100644 --- a/src/lib/components/Actions/Button.svelte +++ b/src/lib/components/Actions/Button.svelte @@ -58,4 +58,4 @@ {@render children()} - \ No newline at end of file + diff --git a/src/lib/components/Actions/index.ts b/src/lib/components/Actions/index.ts index 730add9..ae34e39 100644 --- a/src/lib/components/Actions/index.ts +++ b/src/lib/components/Actions/index.ts @@ -1 +1 @@ -export { default as Button } from './Button.svelte'; \ No newline at end of file +export { default as Button } from './Button.svelte'; diff --git a/src/lib/components/DataInput/TextInput.stories.svelte b/src/lib/components/DataInput/TextInput.stories.svelte index 55223ed..b591ea8 100644 --- a/src/lib/components/DataInput/TextInput.stories.svelte +++ b/src/lib/components/DataInput/TextInput.stories.svelte @@ -51,4 +51,4 @@ - \ No newline at end of file + diff --git a/src/lib/components/DataInput/TextInput.svelte b/src/lib/components/DataInput/TextInput.svelte index 5b7fc02..e3c61e3 100644 --- a/src/lib/components/DataInput/TextInput.svelte +++ b/src/lib/components/DataInput/TextInput.svelte @@ -96,4 +96,4 @@ \ No newline at end of file + diff --git a/src/lib/components/DataInput/Textarea.stories.svelte b/src/lib/components/DataInput/Textarea.stories.svelte index a21333d..1b86e8e 100644 --- a/src/lib/components/DataInput/Textarea.stories.svelte +++ b/src/lib/components/DataInput/Textarea.stories.svelte @@ -45,4 +45,4 @@ - \ No newline at end of file + diff --git a/src/lib/components/DataInput/index.ts b/src/lib/components/DataInput/index.ts index 5bd68dd..e678a3a 100644 --- a/src/lib/components/DataInput/index.ts +++ b/src/lib/components/DataInput/index.ts @@ -1,2 +1,2 @@ export { default as Textarea } from './Textarea.svelte'; -export { default as TextInput } from './TextInput.svelte'; \ No newline at end of file +export { default as TextInput } from './TextInput.svelte'; diff --git a/src/lib/regex/index.ts b/src/lib/regex/index.ts index 18bec8a..c0158b2 100644 --- a/src/lib/regex/index.ts +++ b/src/lib/regex/index.ts @@ -1 +1 @@ -export * from './phone'; \ No newline at end of file +export * from './phone'; diff --git a/src/lib/regex/phone.ts b/src/lib/regex/phone.ts index ff0ad0c..7491632 100644 --- a/src/lib/regex/phone.ts +++ b/src/lib/regex/phone.ts @@ -1 +1 @@ -export const PhoneRegex = /^\+?\d?(\d{3}\d{3}\d{4}|\d{3}-\d{3}-\d{4})$/; \ No newline at end of file +export const PhoneRegex = /^\+?\d?(\d{3}\d{3}\d{4}|\d{3}-\d{3}-\d{4})$/; diff --git a/src/lib/server/pothos/schema/index.ts b/src/lib/server/pothos/schema/index.ts index 9f8978e..b0d89b6 100644 --- a/src/lib/server/pothos/schema/index.ts +++ b/src/lib/server/pothos/schema/index.ts @@ -6,7 +6,7 @@ builder.queryType({}); builder.queryField('version', (t) => t.string({ description: 'Application version', - resolve: () => version + resolve: () => version, }) ); diff --git a/src/lib/server/twilio/index.ts b/src/lib/server/twilio/index.ts index 216455a..5fdbe46 100644 --- a/src/lib/server/twilio/index.ts +++ b/src/lib/server/twilio/index.ts @@ -1 +1 @@ -export * from './twilio.client'; \ No newline at end of file +export * from './twilio.client'; diff --git a/src/lib/server/twilio/twilio.client.ts b/src/lib/server/twilio/twilio.client.ts index c4863d3..004523f 100644 --- a/src/lib/server/twilio/twilio.client.ts +++ b/src/lib/server/twilio/twilio.client.ts @@ -1,4 +1,4 @@ import twilio from 'twilio'; import { TwilioConfig } from './twilio.config'; -export const twilioClient = twilio(TwilioConfig.twilio_account_sid, TwilioConfig.twilio_auth_token); \ No newline at end of file +export const twilioClient = twilio(TwilioConfig.twilio_account_sid, TwilioConfig.twilio_auth_token); diff --git a/src/lib/server/twilio/twilio.config.ts b/src/lib/server/twilio/twilio.config.ts index 19592cf..2539030 100644 --- a/src/lib/server/twilio/twilio.config.ts +++ b/src/lib/server/twilio/twilio.config.ts @@ -28,4 +28,4 @@ const LoadConfig = (): TwilioConfiguration => { }; }; -export const TwilioConfig = LoadConfig(); \ No newline at end of file +export const TwilioConfig = LoadConfig(); diff --git a/src/lib/server/yoga/context.ts b/src/lib/server/yoga/context.ts index 0315ed2..76bb9eb 100644 --- a/src/lib/server/yoga/context.ts +++ b/src/lib/server/yoga/context.ts @@ -3,4 +3,4 @@ import type { YogaInitialContext } from 'graphql-yoga'; export const Context = (initialContext: YogaInitialContext) => ({ ...initialContext, config: {}, -}); \ No newline at end of file +}); diff --git a/src/routes/app/+page.svelte b/src/routes/app/+page.svelte index 991b92f..e3cf09f 100644 --- a/src/routes/app/+page.svelte +++ b/src/routes/app/+page.svelte @@ -1,4 +1,4 @@ -SMS \ No newline at end of file +SMS diff --git a/src/routes/app/sms/+page.server.ts b/src/routes/app/sms/+page.server.ts index 4d68db0..096cbf2 100644 --- a/src/routes/app/sms/+page.server.ts +++ b/src/routes/app/sms/+page.server.ts @@ -46,4 +46,4 @@ export const actions = { success: true, }; }, -} satisfies Actions; \ No newline at end of file +} satisfies Actions; diff --git a/src/routes/app/sms/+page.svelte b/src/routes/app/sms/+page.svelte index 76341e4..939a807 100644 --- a/src/routes/app/sms/+page.svelte +++ b/src/routes/app/sms/+page.svelte @@ -64,4 +64,4 @@ .page { @apply flex flex-col items-center justify-around gap-24 py-[10%]; } - \ No newline at end of file + diff --git a/src/routes/login/+page.svelte b/src/routes/login/+page.svelte index 0553ebd..8c8ee0c 100644 --- a/src/routes/login/+page.svelte +++ b/src/routes/login/+page.svelte @@ -79,4 +79,4 @@ .page { @apply flex flex-col items-center justify-around gap-24 py-[10%]; } - \ No newline at end of file + diff --git a/svelte.config.js b/svelte.config.js index beb7e05..9045621 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -9,7 +9,7 @@ const config = { kit: { version: { - name: '1.0.0-alpha' + name: '1.0.0-alpha', }, // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. // If your environment is not supported, or you settled on a specific environment, switch out the adapter. @@ -18,4 +18,4 @@ const config = { }, }; -export default config; \ No newline at end of file +export default config;