-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
bitjian
committed
Aug 22, 2024
0 parents
commit f370af4
Showing
34 changed files
with
1,798 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
######## 公共部分,每个项目保持此部分一致,不可更改,并且放最前面 ######## | ||
### 安全相关 ### | ||
# 公司明确的敏感文件泄漏风险 | ||
.DS_Store | ||
.bashrc | ||
.kshrc | ||
.zshrc | ||
.bash_history | ||
.bash_logout | ||
.bash_profile | ||
known_hosts | ||
.mysql_history | ||
authorized_keys | ||
.svn | ||
*.out | ||
user.cfg | ||
global.cfg | ||
config.ini | ||
.htaccess | ||
|
||
# 日志泄漏风险 | ||
logs | ||
*.log.* | ||
*.log | ||
|
||
# 备份文件泄漏风险 | ||
*.tgz | ||
*.zip | ||
*.tar | ||
*.7z | ||
*.bz2 | ||
*.rar | ||
*.gz | ||
*.xz | ||
*.Z | ||
*.bak | ||
*.back | ||
*.backup | ||
*.swp | ||
*.un~ | ||
|
||
### Node.js相关 ### | ||
# 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 | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
*.lcov | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Bower dependency directory (https://bower.io/) | ||
# 有的项目需要,提交并无泄漏源码风险,保留 | ||
# bower_components | ||
|
||
# node-waf configuration | ||
.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/) | ||
web_modules/ | ||
|
||
# TypeScript cache | ||
*.tsbuildinfo | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Microbundle cache | ||
.rpt2_cache/ | ||
.rts2_cache_cjs/ | ||
.rts2_cache_es/ | ||
.rts2_cache_umd/ | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variables file | ||
.env | ||
.env.test | ||
|
||
# parcel-bundler cache (https://parceljs.org/) | ||
.cache | ||
.parcel-cache | ||
|
||
# Next.js build output | ||
.next | ||
out | ||
|
||
# Nuxt.js build / generate output | ||
# 因为发布触发执行构建有些麻烦,有些项目使用构建好把构建结果也提交的方式,先保留 | ||
# .nuxt | ||
# 业务有些旧项目在用dist目录,所以不做统一屏蔽 | ||
# dist | ||
|
||
# Gatsby files | ||
.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/dist | ||
|
||
# Serverless directories | ||
.serverless/ | ||
|
||
# FuseBox cache | ||
.fusebox/ | ||
|
||
# DynamoDB Local files | ||
.dynamodb/ | ||
|
||
# TernJS port file | ||
.tern-port | ||
|
||
# Stores VSCode versions used for testing VSCode extensions | ||
.vscode | ||
.vscode-test | ||
|
||
# yarn v2 | ||
.yarn/cache | ||
.yarn/unplugged | ||
.yarn/build-state.yml | ||
.yarn/install-state.gz | ||
.pnp.* | ||
|
||
### Java项目相关 ### | ||
# Compiled class file | ||
/classes/ | ||
/WEB-INF/classes | ||
|
||
# Eclipse Project Files | ||
.classpath | ||
.project | ||
.settings | ||
|
||
# IntelliJ IDEA Files | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea | ||
######## 公共部分结束 ######## | ||
|
||
######## 各项目自定义部分,根据需要增加或者屏蔽 ######## | ||
# 请自由发挥 | ||
######## 自定义部分结束 ######## | ||
node_modules | ||
*node_modules | ||
*config.local.js | ||
.DS_store | ||
*.DS_store | ||
package-lock.json | ||
logger | ||
upload | ||
config.json | ||
*local/ |
Oops, something went wrong.