Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
huntabyte committed Dec 2, 2024
1 parent 1d3357e commit e75f164
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ pnpm-lock.yaml
yarn.lock
.github
.github/
docs/static/**/*
9 changes: 4 additions & 5 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,11 @@ export default tseslint.config(
"dist/",
".svelte-kit/**/*",
"docs/.svelte-kit/**/*",
"docs/static/**/*",
"docs/build/**/*",
".svelte-kit",
"start/.svelte-kit/**/*",
"start/node_modules/**/*",
"start/build/**/*",
"packages/kit/dist/**/*",
"packages/kit/.svelte-kit/**/*",
"packages/barqode/dist/**/*",
"packages/barqode/.svelte-kit/**/*",
],
}
);
8 changes: 4 additions & 4 deletions packages/barqode/svelte.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import adapter from "@sveltejs/adapter-auto";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";

/** @type {import('@sveltejs/kit').Config} */
const config = {
Expand All @@ -11,8 +11,8 @@ const config = {
// 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.
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter()
}
adapter: adapter(),
},
};

export default config;
6 changes: 3 additions & 3 deletions packages/barqode/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";

export default defineConfig({
plugins: [sveltekit()]
plugins: [sveltekit()],
});

0 comments on commit e75f164

Please sign in to comment.