summaryrefslogtreecommitdiffstats
path: root/src/main.js
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-10-26 10:33:27 +0200
committerJulius Härtl <jus@bitgrid.net>2018-10-26 10:33:27 +0200
commitf7ed53a5fba82f80457677f32a972bb0bab7e32c (patch)
treefc33ae951edda30e5ffd6f8f0bf5ec80b2a49a83 /src/main.js
parenta25b0bc69e8f346cdb1f567c46c01e99338291c3 (diff)
Add proper eslint settings
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main.js b/src/main.js
index 5f9d65a0..1186c72a 100644
--- a/src/main.js
+++ b/src/main.js
@@ -19,16 +19,16 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
-import "@babel/polyfill";
+import '@babel/polyfill'
import Vue from 'vue'
-import {sync} from 'vuex-router-sync';
+import { sync } from 'vuex-router-sync'
import App from './App'
-import store from './store';
-import router from './router';
+import store from './store'
+import router from './router'
-sync(store, router);
+sync(store, router)
// CSP config for webpack dynamic chunk loading
// eslint-disable-next-line
@@ -48,5 +48,5 @@ Vue.prototype.OCA = OCA
new Vue({
router: router,
render: h => h(App),
- store: store
+ store: store
}).$mount('#vue-content')