### Install Renovate Config Validator Hook Source: https://github.com/renovatebot/pre-commit-hooks/blob/main/README.md This snippet shows how to install the renovate-config-validator pre-commit hook. It specifies the repository, revision, and the hook ID. ```yaml repos: - repo: https://github.com/renovatebot/pre-commit-hooks rev: 41.80.0 hooks: - id: renovate-config-validator ``` -------------------------------- ### Install Renovate Config Validator Hook with Strict Mode Source: https://github.com/renovatebot/pre-commit-hooks/blob/main/README.md This snippet demonstrates how to install the renovate-config-validator pre-commit hook with strict mode enabled. It includes the '--strict' argument for tighter configuration validation. ```yaml repos: - repo: https://github.com/renovatebot/pre-commit-hooks rev: 41.80.0 hooks: - id: renovate-config-validator args: [--strict] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.