-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pre-commit-config.yaml
46 lines (46 loc) · 1.51 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
42
43
44
45
46
# 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|lib/docs/docs/assets/orcid-widget.js$
- 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 licenses
entry: cargo deny check licenses
language: system
pass_filenames: false
# NOTE: better done from the commandline since we install it already with cargo
# - repo: https://github.com/EmbarkStudios/cargo-deny
# rev: 0.14.20
# hooks:
# - id: cargo-deny
# args: ["--all-features", "check", "licenses"]
ci:
autofix_commit_msg: 🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
autoupdate_commit_msg: ⬆ [pre-commit.ci] pre-commit autoupdate