mirror of
https://github.com/status-im/github-webhook-filter.git
synced 2025-01-10 13:56:27 +00:00
29 lines
735 B
YAML
29 lines
735 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.2.0
|
|
hooks:
|
|
- id: check-case-conflict
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
- id: end-of-file-fixer
|
|
- id: trailing-whitespace
|
|
args: [--markdown-linebreak-ext=md]
|
|
|
|
- repo: local
|
|
hooks:
|
|
- id: deno-fmt
|
|
name: deno-fmt
|
|
entry: deno fmt -q
|
|
language: system
|
|
types_or: [javascript, jsx, ts, tsx]
|
|
- id: deno-lint
|
|
name: deno-lint
|
|
entry: deno lint -q
|
|
language: system
|
|
types_or: [javascript, jsx, ts, tsx]
|
|
- id: deno-check
|
|
name: deno-check
|
|
entry: deno check -q
|
|
language: system
|
|
types_or: [javascript, jsx, ts, tsx]
|