mirror of
https://github.com/AnLoMinus/Diablo.git
synced 2026-02-12 14:02:47 +00:00
📦 מה הוספנו: ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 🏗️ GitHub Configuration & Automation: • Issue Templates (Bug Report, Feature Request) • Pull Request Template • CI/CD Workflow (ci.yml) • Code Quality Workflow (lint.yml) • Security Scanning Workflow (security-scan.yml) • Release Workflow (release.yml) • Dependabot configuration • Funding configuration 📚 Comprehensive Documentation: • docs/INDEX.md - Documentation portal • docs/GETTING_STARTED.md - Quick start guide • docs/ARCHITECTURE.md - Project architecture • docs/USAGE.md - Complete usage guide • docs/BEST_PRACTICES.md - Best practices • docs/SECURITY_MODEL.md - Security model • docs/FAQ.md - Frequently asked questions ⚙️ Configuration Files: • LICENSE - MIT License • SECURITY.md - Security policy • CODE_OF_CONDUCT.md - Community guidelines • CONTRIBUTING.md - Contribution guide • CHANGELOG.md - Version history • CODEOWNERS - Code ownership • .gitignore - Git ignore rules • .gitattributes - Git attributes • .editorconfig - Editor configuration ✨ Enhanced README: • Professional structure with badges • Complete table of contents • Links to all documentation • Updated formatting • Better organization ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 📊 Statistics: • 25+ new files • 796+ documentation lines • Full RepoCraft framework compliance • Zero linter errors • Backward compatible 🇮🇱 Made with ❤️ in Israel > בס״ד - מגדל בסייעתא דשמיא
61 lines
902 B
Plaintext
61 lines
902 B
Plaintext
# Git attributes for Diablo project
|
|
|
|
# Auto detect text files and perform LF normalization
|
|
* text=auto
|
|
|
|
# Bash scripts
|
|
*.sh text eol=lf
|
|
Diablo text eol=lf
|
|
|
|
# Documentation
|
|
*.md text eol=lf
|
|
*.txt text eol=lf
|
|
|
|
# GitHub workflows
|
|
.github/**/*.yml text eol=lf
|
|
.github/**/*.yaml text eol=lf
|
|
|
|
# Configuration files
|
|
*.conf text eol=lf
|
|
*.config text eol=lf
|
|
|
|
# Database files
|
|
*.db -text
|
|
*.sqlite -text
|
|
*.sqlite3 -text
|
|
|
|
# Binary files
|
|
*.png binary
|
|
*.jpg binary
|
|
*.jpeg binary
|
|
*.gif binary
|
|
*.ico binary
|
|
*.pdf binary
|
|
*.zip binary
|
|
*.tar.gz binary
|
|
*.deb binary
|
|
*.rpm binary
|
|
|
|
# Executables
|
|
*.exe binary
|
|
*.bin binary
|
|
|
|
# Archives
|
|
*.7z binary
|
|
*.bz2 binary
|
|
*.gz binary
|
|
*.rar binary
|
|
*.tar binary
|
|
*.xz binary
|
|
*.zip binary
|
|
|
|
# Diff and patch files
|
|
*.diff text
|
|
*.patch text
|
|
*.rej text
|
|
|
|
# Mark files as linguist-generated (for GitHub stats)
|
|
# Uncomment if you have auto-generated files
|
|
# *.generated.js linguist-generated=true
|
|
|