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

16 lines
224 B
INI

[flake8]
max-line-length = 120
extend-ignore = E203, W503
exclude =
.git,
__pycache__,
.venv,
venv,
.cache,
build,
dist,
*.egg-info
per-file-ignores =
__init__.py:F401
max-complexity = 10