Files
Petrus Han ebf29395bc Add automated PR review workflow and code quality configs
Introduces a GitHub Actions workflow for automated PR review, including Python linting (flake8, pylint), formatting (black), YAML and shell script validation, and security checks. Adds configuration files for flake8, pylint, yamllint, and development requirements. Updates README with details and usage instructions, and provides a detailed guide in docs/PR-REVIEW.md.
2025-11-24 14:30:20 +08:00

18 lines
295 B
YAML

---
extends: default
rules:
line-length:
max: 200
level: warning
comments:
min-spaces-from-content: 1
document-start: disable
truthy:
allowed-values: ['true', 'false', 'on', 'off']
indentation:
spaces: 2
indent-sequences: true
comments-indentation: disable