- deploy/: 后端、ERP前端、MOM前端部署脚本 - mom-backend: Maven Wrapper 支持无全局 Maven 构建 - mom-frontend-vue2: MES 管理前端 Vue2 项目 Made-with: Cursor
20 lines
322 B
JavaScript
20 lines
322 B
JavaScript
module.exports = {
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:vue/essential"
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"vue"
|
|
],
|
|
"rules": {
|
|
}
|
|
};
|