51 lines
644 B
Plaintext
51 lines
644 B
Plaintext
# 通用忽略
|
|
.DS_Store
|
|
*.log
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
*.swp
|
|
.gitsecret
|
|
|
|
# Kotlin 忽略
|
|
kotlin/.gradle/
|
|
kotlin/build/
|
|
kotlin/out/
|
|
|
|
# Java 忽略
|
|
java/target/
|
|
java/out/
|
|
java/*.class
|
|
|
|
# Go 忽略
|
|
go/bin/
|
|
|
|
# Python 忽略
|
|
python/__pycache__/
|
|
python/*.py[cod]
|
|
python/*$py.class
|
|
python/dist/
|
|
python/build/
|
|
python/.venv/
|
|
python/venv/
|
|
python/env/
|
|
|
|
# C# 忽略
|
|
csharp/**/bin/
|
|
csharp/**/obj/
|
|
csharp/**/.vs/
|
|
csharp/**/*.user
|
|
|
|
# TypeScript 忽略
|
|
typescript/node_modules/
|
|
typescript/dist/
|
|
typescript/coverage/
|
|
typescript/.npm/
|
|
typescript/.yarn/
|
|
typescript/yarn-error.log
|
|
typescript/npm-debug.log
|
|
|
|
# Rust 忽略
|
|
rust/target/
|
|
rust/Cargo.lock
|
|
rust/**/*.rs.bk |