-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
33 lines (32 loc) · 910 Bytes
/
.pre-commit-config.yaml
File metadata and controls
33 lines (32 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
ci:
autoupdate_schedule: quarterly
autoupdate_commit_message: 'chore: update pre-commit hooks'
autofix_prs: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: 3e8a8703264a2f4a69428a0aa4dcb512790b2c8c # v6.0.0
hooks:
- id: check-json
- id: check-toml
- id: check-yaml
- id: check-merge-conflict
- id: check-symlinks
exclude: tests/data/broken-symlink
- id: destroyed-symlinks
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: trailing-whitespace
- repo: local
hooks:
- id: deno-fmt
name: deno fmt
language: python
entry: deno fmt
pass_filenames: false
additional_dependencies: [deno]
- id: deno-lint
name: deno lint
language: python
entry: deno lint
pass_filenames: false
additional_dependencies: [deno]