2022-10-08 19:39:04 +02:00
|
|
|
exclude: (\.min\.(js|css)(\.map)?$|/vendor/)
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
|
|
rev: v4.3.0
|
|
|
|
hooks:
|
|
|
|
- id: check-json
|
|
|
|
- id: check-yaml
|
|
|
|
args: [--allow-multiple-documents]
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
- id: check-merge-conflict
|
|
|
|
- id: detect-private-key
|
|
|
|
- id: pretty-format-json
|
|
|
|
args:
|
|
|
|
- --autofix
|
|
|
|
- --no-sort-keys
|
|
|
|
- id: trailing-whitespace
|
|
|
|
args:
|
|
|
|
- --markdown-linebreak-ext=md
|
|
|
|
- repo: https://github.com/rtts/djhtml
|
|
|
|
rev: v1.5.2
|
|
|
|
hooks:
|
|
|
|
- id: djhtml
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
2022-11-01 01:53:42 +01:00
|
|
|
rev: v3.0.0-alpha.4
|
2022-10-08 19:39:04 +02:00
|
|
|
hooks:
|
|
|
|
- id: prettier
|
|
|
|
types_or: [javascript, css]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-eslint
|
2022-10-25 01:57:34 +02:00
|
|
|
rev: v8.26.0
|
2022-10-08 19:39:04 +02:00
|
|
|
hooks:
|
|
|
|
- id: eslint
|
|
|
|
args: [--fix]
|
|
|
|
types_or: [javascript, css]
|
|
|
|
additional_dependencies:
|
|
|
|
- eslint
|
|
|
|
- eslint-config-prettier
|