fix eslintrc

This commit is contained in:
pangxie1991 2017-03-03 16:20:21 +08:00
parent b8a16cabc2
commit 2bd368086b
2 changed files with 4 additions and 7 deletions

View File

@ -10,7 +10,8 @@ module.exports = {
env: {
es6: true,
node: true
node: true,
mocha: true
},
plugins: ['vue'],
@ -24,10 +25,6 @@ module.exports = {
window: false
},
env: {
mocha: true
},
rules: {
'accessor-pairs': 2,
'arrow-spacing': [2, { 'before': true, 'after': true }],

View File

@ -4,7 +4,7 @@ const to2 = require('2webpack2');
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
const getPostcssPlugin = require('../../build/utils/postcss_pipe');
let webpackConfig = {
const webpackConfig = {
output: {
path: path.resolve(process.cwd(), 'dist'),
publicPath: '/dist/',
@ -129,4 +129,4 @@ let webpackConfig = {
}
};
module.exports = to2(webpackConfig, {quiet: true, context: true});
module.exports = to2(webpackConfig, { quiet: true, context: true });