chore(lint): Update eslint rules

* Remove semi
This commit is contained in:
Braks
2021-10-20 22:39:54 +02:00
parent 5ed1094dfe
commit 77eac0c12a
74 changed files with 2007 additions and 1827 deletions
+12 -12
View File
@@ -1,14 +1,14 @@
import { createApp } from 'vue';
import './index.css';
import App from './App';
import { router } from './router';
import { createPinia } from 'pinia';
import { DraggablePlugin } from '@braks/revue-draggable';
import { createApp } from 'vue'
import './index.css'
import App from './App'
import { router } from './router'
import { createPinia } from 'pinia'
import { DraggablePlugin } from '@braks/revue-draggable'
const app = createApp(App);
const app = createApp(App)
app.config.performance = true;
app.use(router);
app.use(DraggablePlugin);
app.use(createPinia());
app.mount('#root');
app.config.performance = true
app.use(router)
app.use(DraggablePlugin)
app.use(createPinia())
app.mount('#root')