Files
dance-lessons-coach/.yamllint.yaml
Gabriel Radureau c1e628f339 📝 docs: update comprehensive documentation and project infrastructure
Documentation Updates:
- Enhanced AGENTS.md with user authentication details
- Updated README.md with authentication API documentation
- Added CONTRIBUTING.md guidelines for BDD testing
- Version management guide improvements
- Local CI/CD testing documentation

Project Infrastructure:
- Updated .gitignore for new file patterns
- Enhanced git hooks documentation
- YAML linting configuration
- Script improvements and organization
- Configuration management updates

API Enhancements:
- Greet service integration with authentication
- Server middleware for JWT validation
- Telemetry improvements
- Version management utilities

Generated by Mistral Vibe.
Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
2026-04-09 00:26:15 +02:00

33 lines
730 B
YAML

# dance-lessons-coach YAML Lint Configuration
# More practical limits for CI/CD workflow files
extends: default
rules:
# Increase line length limit to 400 characters
line-length:
max: 400
level: warning # Change to warning instead of error
# Allow truthy values (workflow_dispatch: true)
truthy:
allowed-values: ['true', 'false', 'on', 'off']
# Be more lenient with trailing spaces
trailing-spaces:
level: warning
# Document start required for workflow files
document-start:
present: false
# Allow empty values
empty-values:
forbid-in-block-mappings: false
forbid-in-flow-mappings: false
# Ignore specific files
ignore: |
.gitea/workflows/
scripts/cicd/