From 6d7366f5975b13f22e12f7e9e9485ebfdbfaadf6 Mon Sep 17 00:00:00 2001 From: Limon Monte Date: Sat, 22 Oct 2016 18:12:00 +0200 Subject: [PATCH] Fix conding style errors (unused vars, quotes) --- build/webpack.base.config.js | 1 - build/webpack.client.config.js | 4 ++-- src/store/index.js | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/build/webpack.base.config.js b/build/webpack.base.config.js index ab7e6d650..6a8d229c9 100644 --- a/build/webpack.base.config.js +++ b/build/webpack.base.config.js @@ -1,5 +1,4 @@ const path = require('path') -const webpack = require('webpack') const vueConfig = require('./vue-loader.config') module.exports = { diff --git a/build/webpack.client.config.js b/build/webpack.client.config.js index 372d4238c..caeaff7e4 100644 --- a/build/webpack.client.config.js +++ b/build/webpack.client.config.js @@ -26,8 +26,8 @@ if (process.env.NODE_ENV === 'production') { // so they are extracted. vueConfig.loaders = { stylus: ExtractTextPlugin.extract({ - loader: "css-loader!stylus-loader", - fallbackLoader: "vue-style-loader" // <- this is a dep of vue-loader + loader: 'css-loader!stylus-loader', + fallbackLoader: 'vue-style-loader' // <- this is a dep of vue-loader }) } diff --git a/src/store/index.js b/src/store/index.js index 3e34700be..ca0818745 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1,6 +1,6 @@ import Vue from 'vue' import Vuex from 'vuex' -import { fetchItem, fetchItems, fetchIdsByType, fetchUser } from './api' +import { fetchItems, fetchIdsByType, fetchUser } from './api' Vue.use(Vuex)