Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
repos:
# dogfood
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.30.0
rev: 0.31.0
hooks:
- id: check-dependabot
- id: check-github-workflows
- id: check-readthedocs
- id: check-metaschema
name: Validate Vendored Schemas
files: ^src/check_jsonschema/builtin_schemas/vendor/.*\.json$
exclude: ^src/check_jsonschema/builtin_schemas/vendor/azure-pipelines\.json$
- id: check-metaschema
name: Validate Vendored Schemas (nonunicode regexes)
files: ^src/check_jsonschema/builtin_schemas/vendor/azure-pipelines\.json$
args: ["--regex-variant", "nonunicode"]
- id: check-jsonschema
name: Validate Test Configs
args: ["--schemafile", "tests/example-files/config_schema.json"]
Expand Down
Loading