加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.gitignore 794 Bytes
一键复制 编辑 原始数据 按行查看 历史
niki 提交于 2024-07-17 15:02 . 2024-07-17
# 忽略 node_modules 目录,因为它是 npm 或 yarn 安装的依赖
node_modules/
# 忽略 yarn 或 npm 生成的锁文件
yarn.lock
package-lock.json
# 忽略 npm 缓存目录
.npm/
# 忽略 yarn 缓存目录
.yarn/
# 忽略 VSCode 设置文件和缓存
.vscode/
# 忽略编辑器和 IDE 产生的临时文件
.DS_Store
Thumbs.db
*.suo
*.sbr
*.swp
*.bak
*.tmp
*.log
# 忽略环境变量文件,以保护敏感信息
.env
.env.*
!.env.example
# 忽略 dist 目录,这是构建输出目录
dist/
# 忽略 coverage 目录,这是测试覆盖率报告目录
coverage/
# 忽略 .eslintcache 文件,这是 ESLint 生成的缓存
.eslintcache
# 忽略 .nyc_output 目录,这是 NYC(代码覆盖率工具)的输出目录
.nyc_output/
# 忽略 vue-cli-service 缓存
.cache/
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化