package.json配置eslint

webpack中配置命令 

"lint": "eslint --ext .js --ext .jsx --ext .vue client/",
"lint-fix": "eslint --fix --ext .js --ext .jsx --ext .vue client/",

安装babel-eslint 和 eslint-loader,在webpack.config.base.js中配置rules

{
        test: /\.(vue|js|jsx)$/,
        loader: 'eslint-loader',
        exclude: /node_modules/,
        enforce: 'pre' // 预处理
},

在build前自动删除上次打包文件

"clean": "rimraf dist",

.editconfig 配置

root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

 

华丽的分割线


                                                                                             

想要整理更多的碎片知识,扫码关注下面的公众号,让我们在哪里接着唠!

 

你可能感兴趣的:(其他)