mirror of
https://github.com/shadow1ng/fscan.git
synced 2025-09-14 05:56:46 +08:00

- 在main.go中添加initLocalPlugins函数,从插件注册表动态获取本地插件列表 - 修改Common/Flag.go使用动态插件列表进行验证 - 消除硬编码插件名称,支持自动发现新插件 - 插件列表按字母顺序排序,保持一致性 - 修复循环导入问题 - 添加cleaner插件自毁脚本到.gitignore - 创建完整的参数说明文档
78 lines
902 B
Plaintext
78 lines
902 B
Plaintext
result.txt
|
|
main
|
|
.idea
|
|
fscan.exe
|
|
fscan
|
|
makefile
|
|
fscanapi.csv
|
|
|
|
# IDE files / IDE 文件
|
|
.vscode/
|
|
.cursor/
|
|
.cursorrules
|
|
.claude/
|
|
|
|
# Local development files / 本地开发文件
|
|
*.local
|
|
*.tmp
|
|
*.temp
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.test
|
|
.env.production
|
|
|
|
# OS files / 操作系统文件
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Logs / 日志文件
|
|
*.log
|
|
logs/
|
|
log/
|
|
|
|
# Test coverage / 测试覆盖率
|
|
coverage.txt
|
|
coverage.html
|
|
*.cover
|
|
|
|
# Build artifacts / 构建产物
|
|
dist/
|
|
build/
|
|
bin/
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Go specific / Go 相关
|
|
vendor/
|
|
*.test
|
|
*.prof
|
|
*.mem
|
|
*.cpu
|
|
__debug_bin*
|
|
|
|
# Local development tools / 本地开发工具
|
|
.air.toml
|
|
air_tmp/
|
|
|
|
# Todo files / Todo文件
|
|
Todo列表.md
|
|
*todo*.md
|
|
*TODO*.md
|
|
|
|
# Claude documentation / Claude文档
|
|
.claude_docs/
|
|
|
|
# Cleaner plugin artifacts / 清理插件产物
|
|
cleanup.bat
|
|
cleanup.sh
|
|
cleanup_script_*
|