zhaobinglong / myBlog

https://zhaobinglong.github.io/myBlog/
MIT License
7 stars 0 forks source link

前端项目工程化建设 #156

Open zhaobinglong opened 2 years ago

zhaobinglong commented 2 years ago

目录规范

静态资源目录: assets 本地数据模拟目录: mocks 公共函数方法目录: utils 单元测试目录: test 常量目录: consts icon目录: icons 公共混合函数目录: mixin 路由目录: router 组件目录: components 页面目录: views 配置目录: config 服务api接口管理目录: api vuex 状态管路目录: store .env*: 项目中我们通常会使用环境变量来影响应用在不同运行环境下的行为. 从文件中读取环境变量

zhaobinglong commented 2 years ago

git提交规范

zhaobinglong commented 2 years ago

编辑器.editorconfig规范

[*.{js,jsx,ts,tsx,wxml}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
zhaobinglong commented 2 years ago

代码注释规范