doses/.pre-commit-config.yaml
pre-commit-ci[bot] 3c878e9497
[pre-commit.ci] pre-commit autoupdate
updates:
- [github.com/rtts/djhtml: v1.5.2 → v2.0.0](https://github.com/rtts/djhtml/compare/v1.5.2...v2.0.0)
2023-02-07 05:50:38 +00:00

37 lines
982 B
YAML

exclude: (\.min\.(js|css)(\.map)?$|/vendor/)
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.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: v2.0.0
hooks:
- id: djhtml
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.4
hooks:
- id: prettier
types_or: [javascript, css]
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.33.0
hooks:
- id: eslint
args: [--fix]
types_or: [javascript, css]
additional_dependencies:
- eslint
- eslint-config-prettier