Skip to content

Commit 306d4e1

Browse files
committed
Prettier
1 parent a7ed0e7 commit 306d4e1

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed
Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import './app.css'
2-
import App from './App.svelte'
1+
import "./app.css";
2+
import App from "./App.svelte";
33

44
import { Logger } from "../../../../";
55
const log: Logger<any> = new Logger();
66
log.silly("I am a silly log.");
77

8-
98
const app = new App({
10-
target: document.getElementById('app'),
11-
})
9+
target: document.getElementById("app"),
10+
});
1211

13-
export default app
12+
export default app;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
1+
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
22

33
export default {
44
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
55
// for more information about preprocessors
66
preprocess: vitePreprocess(),
7-
}
7+
};
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { defineConfig } from 'vite'
2-
import { svelte } from '@sveltejs/vite-plugin-svelte'
1+
import { defineConfig } from "vite";
2+
import { svelte } from "@sveltejs/vite-plugin-svelte";
33

44
// https://vitejs.dev/config/
55
export default defineConfig({
66
plugins: [svelte()],
7-
})
7+
});

0 commit comments

Comments
 (0)