Skip to content

Commit

Permalink
style: fix linting and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Nov 1, 2022
1 parent 64ae146 commit 94afea0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions packages/svelte-vega-sample/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import './app.css'
import App from './App.svelte'
import "./app.css";
import App from "./App.svelte";

const app = new App({
target: document.getElementById('app')
})
target: document.getElementById("app"),
});

export default app
export default app;
8 changes: 4 additions & 4 deletions packages/svelte-vega-sample/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";

// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()]
})
plugins: [svelte()],
});
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
},
"include": [
"packages/svelte-vega/src/**/*",
"packages/sample-project/src/**/*",
"packages/storybook/stories/**/*"
"packages/svelte-vega-sample/**/*",
"packages/storybook/stories/**/*"
],
"exclude": ["node_modules/*"]
}

0 comments on commit 94afea0

Please sign in to comment.