标准化编程规范解决方案
工欲善其事,必先利其器。
磨刀不误砍柴工
# 编程规范
# ESLint
所有的配置文件都在 .eslintrc.js (opens new window) 中
module.exports = {
extends: ['plugin:vue/recommended', 'eslint:recommended']
}
1
2
3
2
3
上次更新: 2022/06/05, 20:31:36
工欲善其事,必先利其器。
磨刀不误砍柴工
所有的配置文件都在 .eslintrc.js (opens new window) 中
module.exports = {
extends: ['plugin:vue/recommended', 'eslint:recommended']
}