Skip to content

Commit bc6762b

Browse files
authored
Merge pull request vuejs#55 from limonte/fix/js-conding-standard
Fix conding style errors (unused vars, quotes)
2 parents 4b5dc45 + 6d7366f commit bc6762b

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

build/webpack.base.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const path = require('path')
2-
const webpack = require('webpack')
32
const vueConfig = require('./vue-loader.config')
43

54
module.exports = {

build/webpack.client.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ if (process.env.NODE_ENV === 'production') {
2626
// so they are extracted.
2727
vueConfig.loaders = {
2828
stylus: ExtractTextPlugin.extract({
29-
loader: "css-loader!stylus-loader",
30-
fallbackLoader: "vue-style-loader" // <- this is a dep of vue-loader
29+
loader: 'css-loader!stylus-loader',
30+
fallbackLoader: 'vue-style-loader' // <- this is a dep of vue-loader
3131
})
3232
}
3333

src/store/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Vue from 'vue'
22
import Vuex from 'vuex'
3-
import { fetchItem, fetchItems, fetchIdsByType, fetchUser } from './api'
3+
import { fetchItems, fetchIdsByType, fetchUser } from './api'
44

55
Vue.use(Vuex)
66

0 commit comments

Comments
 (0)