feat: add RegisterResult component, ESLint config, and vue.config.js for project setup

- Created a new RegisterResult.vue component for displaying registration success.
- Added ESLint configuration for unit tests in the tests directory.
- Implemented vue.config.js for webpack configuration, including theme color support and proxy settings for development.
This commit is contained in:
dienakdz
2026-04-07 07:25:38 +07:00
parent 106419c955
commit cb49789bf4
232 changed files with 92025 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
/**
* feat:新增功能
* fixbug 修复
* docs:文档更新
* style:不影响程序逻辑的代码修改(修改空白字符,格式缩进,补全缺失的分号等,没有改变代码逻辑)
* refactor:重构代码(既没有新增功能,也没有修复 bug)
* perf:性能, 体验优化
* test:新增测试用例或是更新现有测试
* build:主要目的是修改项目构建系统(例如 glup,webpackrollup 的配置等)的提交
* ci:主要目的是修改项目继续集成流程(例如 TravisJenkinsGitLab CICircle等)的提交
* chore:不属于以上类型的其他类型,比如构建流程, 依赖管理
* revert:回滚某个更早之前的提交
*/
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
['feat', 'fix', 'docs', 'style', 'refactor', 'test', 'chore', 'revert']
],
'subject-full-stop': [0, 'never'],
'subject-case': [0, 'never']
}
}