Files
cs249r_book/.yamllint
Vijay Janapa Reddi e37f53af9a refactor(validation): simplify to direct yamllint approach
- Remove custom Python script (validate_yaml.py)
- Use direct yamllint in pre-commit for simplicity
- Update .yamllint config to disable style checks
- Focus only on critical syntax errors
- Better performance and standard approach
- Maintain same validation coverage for all YAML files
2025-08-04 09:53:46 -04:00

18 lines
402 B
Plaintext

extends: default
rules:
# Very lenient rules for GitHub Actions and Quarto
line-length: disable
trailing-spaces: disable
document-start: disable
comments-indentation: disable
indentation: disable
new-line-at-end-of-file: disable
truthy: disable
empty-lines: disable
colons: disable
commas: disable
brackets: disable
comments: disable
# Only check for critical syntax errors