Some checks are pending
CI Pipeline / changes (push) Waiting to run
CI Pipeline / core (push) Blocked by required conditions
CI Pipeline / trading-backend (push) Blocked by required conditions
CI Pipeline / trading-data-service (push) Blocked by required conditions
CI Pipeline / trading-frontend (push) Blocked by required conditions
CI Pipeline / erp-core (push) Blocked by required conditions
CI Pipeline / erp-mecanicas (push) Blocked by required conditions
CI Pipeline / gamilit-backend (push) Blocked by required conditions
CI Pipeline / gamilit-frontend (push) Blocked by required conditions
Core: - Add catalog reference implementations (auth, payments, notifications, websocket, etc.) - New agent profiles: Database Auditor, Integration Validator, LLM Agent, Policy Auditor, Trading Strategist - Update SIMCO directives and add escalation/git guidelines - Add deployment inventory and audit execution reports Projects: - erp-suite: DevOps configs, Dockerfiles, shared libs, vertical enhancements - gamilit: Test structure, admin controllers, service refactoring, husky/commitlint - trading-platform: MT4 gateway, auth controllers, admin frontend, deployment scripts - platform_marketing_content: Full DevOps setup, tests, Docker configs - betting-analytics/inmobiliaria-analytics: Initial app structure 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
914 B
JavaScript
28 lines
914 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'type-enum': [
|
|
2,
|
|
'always',
|
|
[
|
|
'feat', // Nueva funcionalidad
|
|
'fix', // Corrección de bug
|
|
'docs', // Cambios en documentación
|
|
'style', // Cambios de formato (sin afectar código)
|
|
'refactor', // Refactorización de código
|
|
'perf', // Mejoras de performance
|
|
'test', // Añadir o actualizar tests
|
|
'build', // Cambios en build system o dependencias
|
|
'ci', // Cambios en CI/CD
|
|
'chore', // Tareas de mantenimiento
|
|
'revert' // Revertir cambios
|
|
]
|
|
],
|
|
'type-case': [2, 'always', 'lower-case'],
|
|
'type-empty': [2, 'never'],
|
|
'subject-empty': [2, 'never'],
|
|
'subject-full-stop': [2, 'never', '.'],
|
|
'header-max-length': [2, 'always', 100]
|
|
}
|
|
};
|