Skip to content
This repository has been archived by the owner on Apr 20, 2020. It is now read-only.

Commit

Permalink
chore: fixes lint issues - single quotes and importing order (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
tksumanth1994 authored and alexsasharegan committed Feb 24, 2018
1 parent a606c0d commit aff2f34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions template/src/main.js
Expand Up @@ -3,13 +3,13 @@
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
{{/if_eq}}
import Vue from 'vue'{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import BootstrapVue from "bootstrap-vue"{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import BootstrapVue from 'bootstrap-vue'{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import "bootstrap/dist/css/bootstrap.min.css"{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import "bootstrap-vue/dist/bootstrap-vue.css"{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import App from './App'{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
{{#router}}
import router from './router'{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
{{/router}}
import "bootstrap/dist/css/bootstrap.min.css"{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
import "bootstrap-vue/dist/bootstrap-vue.css"{{#if_eq lintConfig "airbnb"}};{{/if_eq}}

Vue.use(BootstrapVue){{#if_eq lintConfig "airbnb"}};{{/if_eq}}
Vue.config.productionTip = false{{#if_eq lintConfig "airbnb"}};{{/if_eq}}
Expand Down

0 comments on commit aff2f34

Please sign in to comment.