Skip to content

Commit

Permalink
Update pre-commit hooks
Browse files Browse the repository at this point in the history
Some linters and formatters were updated in 35dfdea, but that did not
include the versions used by pre-commit.
  • Loading branch information
Stormheg committed Aug 3, 2023
1 parent 801eccc commit 237db53
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ repos:
args: [--fix, --exit-non-zero-on-fix]

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.5.1
rev: v3.0.1
hooks:
- id: prettier
types_or: [css, scss, javascript, ts, tsx, json, yaml]
additional_dependencies:
# Keep in sync with package.json
- prettier@3.0.1
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.8.0
hooks:
Expand All @@ -28,18 +31,20 @@ repos:
files: \.(js|ts|tsx)$
args: [--report-unused-disable-directives]
additional_dependencies:
- eslint@8.8.0
- '@typescript-eslint/eslint-plugin@5.10.1'
- '@typescript-eslint/parser@5.10.1'
# Keep in sync with package.json
- eslint@8.46
- '@typescript-eslint/eslint-plugin@6.2.1'
- '@typescript-eslint/parser@6.2.1'
- '@wagtail/eslint-config-wagtail@0.4.0'
- repo: https://github.com/thibaudcolas/pre-commit-stylelint
rev: v14.2.0
hooks:
- id: stylelint
files: \.scss$
additional_dependencies:
# Keep in sync with package.json
- stylelint@14.2.0
- '@wagtail/stylelint-config-wagtail@0.3.2'
- '@wagtail/stylelint-config-wagtail@0.5.0'
- repo: https://github.com/thibaudcolas/curlylint
rev: v0.13.1
hooks:
Expand Down

0 comments on commit 237db53

Please sign in to comment.