mirror of
https://github.com/jeffusion/gitea-ai-assistant.git
synced 2026-03-27 10:05:50 +00:00
45 lines
389 B
Plaintext
45 lines
389 B
Plaintext
# 版本控制
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# 依赖目录
|
|
node_modules
|
|
.yarn
|
|
.pnp.*
|
|
|
|
# 构建输出
|
|
dist
|
|
lib
|
|
build
|
|
|
|
# 开发/测试文件
|
|
test*
|
|
*.test.ts
|
|
jest.config.js
|
|
coverage
|
|
.vscode
|
|
.idea
|
|
|
|
# 环境文件
|
|
.env*
|
|
!.env.example
|
|
|
|
# 日志
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# 其他文件
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.gz
|
|
*.zip
|
|
*.tar
|
|
README.md
|
|
CHANGELOG.md
|
|
LICENSE
|
|
docs
|