美文网首页
Vue 常见问题处理

Vue 常见问题处理

作者: 天神Deity | 来源:发表于2018-05-07 20:16 被阅读24次

Vue不检测空格错误(代码规范,初学不建议开启)

在webpack.base.conf文件下:

①第一步
// 注释掉以下内容,代码规范检查(例如 空格错误)
// const createLintingRule = () => ({
//   test: /\.(js|vue)$/,
//   loader: 'eslint-loader',
//   enforce: 'pre',
//   include: [resolve('src'), resolve('test')],
//   options: {
//     formatter: require('eslint-friendly-formatter'),
//     emitWarning: !config.dev.showEslintErrorsInOverlay
//   }
// })
②第二部
//...(config.dev.useEslint ? [createLintingRule()] : []),

相关文章

网友评论

      本文标题:Vue 常见问题处理

      本文链接:https://www.haomeiwen.com/subject/dxtbrftx.html