mirror of
https://github.com/ivuorinen/renovate-config.git
synced 2026-03-12 11:01:40 +00:00
- Switch schema to renovate-global-schema.json - Remove redundant/deprecated settings and presets - Add Makefile custom manager for tool version tracking - Add package groups: illuminate, semantic-release, stylelint, tailwind, vite, vue, development tools - Add check-jsonschema pre-commit hook - Add .gitignore and CLAUDE.md - Rewrite README with comprehensive preset documentation
34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
- id: check-added-large-files
|
|
- id: check-case-conflict
|
|
- id: check-executables-have-shebangs
|
|
- id: check-merge-conflict
|
|
- id: check-shebang-scripts-are-executable
|
|
- id: detect-private-key
|
|
- id: end-of-file-fixer
|
|
- id: pretty-format-json
|
|
args: [--autofix, --no-ensure-ascii]
|
|
- id: trailing-whitespace
|
|
|
|
- repo: https://github.com/renovatebot/pre-commit-hooks
|
|
rev: 43.59.2
|
|
hooks:
|
|
- id: renovate-config-validator
|
|
files: default.json
|
|
args: [--strict]
|
|
|
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
|
rev: 0.37.0
|
|
hooks:
|
|
- id: check-jsonschema
|
|
name: check-renovate-preset
|
|
files: default.json
|
|
args:
|
|
- --schemafile
|
|
- https://docs.renovatebot.com/renovate-global-schema.json
|