f4f6f34df4
Changelog Validation / Validate CHANGELOG.md (push) Failing after 3s
Deploy to Demo Server (SFTP) / Verify Deployment Permission (push) Successful in 1s
Standards Compliance / Secret Scanning (push) Successful in 9s
Build & Release / Build & Release Pipeline (push) Failing after 37s
Standards Compliance / Repository Structure Validation (push) Failing after 2s
Standards Compliance / License Header Validation (push) Failing after 10s
Standards Compliance / Coding Standards Check (push) Failing after 3s
Standards Compliance / Workflow Configuration Check (push) Failing after 2s
Standards Compliance / Documentation Quality Check (push) Successful in 3s
Standards Compliance / README Completeness Check (push) Failing after 4s
Standards Compliance / Git Repository Hygiene (push) Successful in 4s
Standards Compliance / Script Integrity Validation (push) Successful in 5s
Standards Compliance / Line Length Check (push) Failing after 3s
Standards Compliance / File Naming Standards (push) Successful in 3s
Standards Compliance / Insecure Code Pattern Detection (push) Successful in 2s
CodeQL Security Scanning / Security Scan Summary (push) Has been cancelled
Standards Compliance / Code Duplication Detection (push) Has been cancelled
Standards Compliance / Dead Code Detection (push) Has been cancelled
Standards Compliance / File Size Limits (push) Has been cancelled
Standards Compliance / Binary File Detection (push) Has been cancelled
Standards Compliance / TODO/FIXME Tracking (push) Has been cancelled
Standards Compliance / Dependency Vulnerability Scanning (push) Has been cancelled
Standards Compliance / Unused Dependencies Check (push) Has been cancelled
Standards Compliance / Broken Link Detection (push) Has been cancelled
Standards Compliance / API Documentation Coverage (push) Has been cancelled
Standards Compliance / Accessibility Check (push) Has been cancelled
Standards Compliance / Performance Metrics (push) Has been cancelled
Standards Compliance / Enterprise Readiness Check (push) Has been cancelled
Standards Compliance / Repository Health Check (push) Has been cancelled
Standards Compliance / Terraform Configuration Validation (push) Has been cancelled
Standards Compliance / Compliance Summary (push) Has been cancelled
Sync Version from README / Propagate README version (push) Has been cancelled
CodeQL Security Scanning / Analyze (javascript) (push) Has been cancelled
Standards Compliance / Version Consistency Check (push) Has been cancelled
CodeQL Security Scanning / Analyze (actions) (push) Has been cancelled
Deploy to Demo Server (SFTP) / SFTP Deploy → Demo (push) Successful in 3s
Standards Compliance / Code Complexity Analysis (push) Has been cancelled
TypeScript MCP server exposing 40+ tools for Dolibarr's REST API including third parties, invoices, proposals, orders, products, projects, tasks, users, categories, warehouses, and more. Multi-connection support with interactive setup wizard. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
95 lines
2.6 KiB
Plaintext
95 lines
2.6 KiB
Plaintext
###############################################################################
|
|
# Core normalization
|
|
###############################################################################
|
|
* text=auto eol=lf
|
|
|
|
# Ensure consistent line endings for scripts
|
|
*.sh text eol=lf
|
|
*.bash text eol=lf
|
|
*.ps1 text eol=lf
|
|
*.cmd text eol=crlf
|
|
*.bat text eol=crlf
|
|
|
|
###############################################################################
|
|
# Binary handling
|
|
###############################################################################
|
|
*.png binary
|
|
*.jpg binary
|
|
*.jpeg binary
|
|
*.gif binary
|
|
*.svg binary
|
|
*.ico binary
|
|
*.pdf binary
|
|
*.zip binary
|
|
*.tar binary
|
|
*.tar.gz binary
|
|
*.7z binary
|
|
*.docx binary
|
|
*.xlsx binary
|
|
*.pptx binary
|
|
*.mp3 binary
|
|
*.mp4 binary
|
|
*.woff binary
|
|
*.woff2 binary
|
|
*.ttf binary
|
|
*.otf binary
|
|
|
|
###############################################################################
|
|
# Export control for GitHub Releases
|
|
# These paths will NOT appear in generated release archives
|
|
###############################################################################
|
|
# CI and automation
|
|
.github/ export-ignore
|
|
.github/workflows/ export-ignore
|
|
.gitea/ export-ignore
|
|
.gitlab/ export-ignore
|
|
|
|
# Development and tooling
|
|
tests/ export-ignore
|
|
testing/ export-ignore
|
|
tmp/ export-ignore
|
|
docs-internal/ export-ignore
|
|
tools/ export-ignore
|
|
|
|
# Dependency folders that should not ship in release bundles
|
|
node_modules/ export-ignore
|
|
vendor-dev/ export-ignore
|
|
|
|
# Local environment and editor configs
|
|
*.local export-ignore
|
|
*.env export-ignore
|
|
*.env.example export-ignore
|
|
*.code-workspace export-ignore
|
|
|
|
# Project specific non release scaffolding
|
|
dev-assets/ export-ignore
|
|
analysis/ export-ignore
|
|
research/ export-ignore
|
|
|
|
###############################################################################
|
|
# Linguistic settings for code statistics
|
|
###############################################################################
|
|
*.css linguist-language=CSS
|
|
*.scss linguist-language=SCSS
|
|
*.js linguist-language=JavaScript
|
|
*.ts linguist-language=TypeScript
|
|
*.php linguist-language=PHP
|
|
*.xml linguist-language=XML
|
|
*.json linguist-language=JSON
|
|
*.ini linguist-language=INI
|
|
*.sql linguist-language=SQL
|
|
*.md linguist-language=Markdown
|
|
|
|
###############################################################################
|
|
# Prevent diff noise for vendor or minified content
|
|
###############################################################################
|
|
vendor/* -diff
|
|
*.min.js -diff
|
|
*.min.css -diff
|
|
|
|
###############################################################################
|
|
# Lockdown for generated files
|
|
###############################################################################
|
|
*.min.js linguist-generated=true
|
|
*.min.css linguist-generated=true
|