-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
41 lines (40 loc) · 1.25 KB
/
.pre-commit-config.yaml
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
34
35
36
37
38
39
40
41
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: check-added-large-files
name: 🐘 Check for added large files
- id: check-toml
name: ✔️ Check TOML
- id: check-yaml
name: ✔️ Check YAML
args:
- --unsafe
- id: end-of-file-fixer
name: 🪚 Fix end of files
- id: trailing-whitespace
name: ✂️ Trim trailing whitespaces
- repo: https://github.com/crate-ci/typos
rev: v1.19.0
hooks:
- id: typos
name: ✒️ Check typos
# exclude: ^CHANGELOG.md$
- repo: local
hooks:
- id: rustfmt
name: 🧹 Format Rust files
description: Check if all files follow the rustfmt style
entry: cargo fmt
language: system
pass_filenames: false
# - id: deny
# name: ❌ Check dependencies
# entry: cargo deny check licenses
# language: system
# pass_filenames: false
ci:
autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
autoupdate_commit_msg: ⬆ [pre-commit.ci] pre-commit autoupdate