-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
132 lines (98 loc) · 2.88 KB
/
.gitignore
File metadata and controls
132 lines (98 loc) · 2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Logs - 日志文件
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html) - 诊断报告
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data - 运行时数据
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover - jscoverage/JSCover 生成的检测库目录
lib-cov
# Coverage directory used by tools like istanbul - Istanbul 等工具使用的覆盖率目录
coverage
*.lcov
# nyc test coverage - nyc 测试覆盖率
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) - Grunt 中间存储
.grunt
# Bower dependency directory (https://bower.io/) - Bower 依赖目录
bower_components
# node-waf configuration - node-waf 配置
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html) - 编译的二进制插件
build/Release
# Dependency directories - 依赖目录
node_modules/
jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/) - Snowpack 依赖目录
web_modules/
# TypeScript cache - TypeScript 缓存
*.tsbuildinfo
# Optional npm cache directory - 可选的 npm 缓存目录
.npm
# Optional eslint cache - 可选的 eslint 缓存
.eslintcache
# Optional stylelint cache - 可选的 stylelint 缓存
.stylelintcache
# Microbundle cache - Microbundle 缓存
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history - 可选的 REPL 历史
.node_repl_history
# Output of 'npm pack' - npm pack 的输出
*.tgz
# Yarn Integrity file - Yarn 完整性文件
.yarn-integrity
# dotenv environment variable files - dotenv 环境变量文件
.env
.env.development.local
.env.test.local.env.production.local
.env.local
# parcel-bundler cache (https://parceljs.org/) - parcel-bundler 缓存
.cache
.parcel-cache
# Next.js build output - Next.js 构建输出
.next
out
# Nuxt.js build / generate output - Nuxt.js 构建/生成输出
.nuxt
dist
# Gatsby files - Gatsby 文件
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output - vuepress 构建输出
.vuepress/dist
# vuepress v2.x temp and cache directory - vuepress v2.x 临时和缓存目录
.temp
.cache
# Docusaurus cache and generated files - Docusaurus 缓存和生成的文件
.docusaurus
# Serverless directories - Serverless 目录
.serverless/
# FuseBox cache - FuseBox 缓存
.fusebox/
# DynamoDB Local files - DynamoDB 本地文件
.dynamodb/
# TernJS port file - TernJS 端口文件
.tern-port
# Stores VSCode versions used for testing VSCode extensions - 存储用于测试 VSCode 扩展的 VSCode 版本
.vscode-test
# yarn v2 - yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# macOS generated files - macOS 生成的文件
.DS_Store