Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
.eslintrc.js 364 Bytes
Copy Edit Raw Blame History
郭静 authored 2021-12-16 15:47 . init
module.exports = {
root: true,
env: {
node: true
},
'extends': [
"plugin:vue/essential"
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
parserOptions: {
parser: 'babel-eslint'
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化