vue create hello-world 创建项目的时候选择了 Linter / Formatter,所以写代码的时候会有代码规范检查,怎么才能关闭这个校验呢
1. 项目创建好后会生成 .eslintrc.js 文件
module.exports = {
root: true,
env: {node: true},
'extends': [
'plugin:vue/essential',
// '@vue/standard',// 这行注释就可以
'@vue/typescript'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {parser: '@typescript-eslint/parser'}
}
@vue/standard
这个注释掉就可以了