-
Notifications
You must be signed in to change notification settings - Fork 20
/
.pre-commit-config.yaml
81 lines (81 loc) · 2.07 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-merge-conflict
- id: check-yaml
- id: trailing-whitespace
- id: check-symlinks
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/editorconfig-checker/editorconfig-checker.python
rev: "2.7.3"
hooks:
- id: editorconfig-checker
alias: ec
- repo: https://github.com/notken12/licensesnip
rev: 19b1186
hooks:
- id: licensesnip
args: []
pass_filenames: false
- repo: https://github.com/crate-ci/typos
rev: v1.22.7
hooks:
- id: typos
pass_filenames: false
- repo: https://github.com/EmbarkStudios/cargo-deny
rev: 0.14.24
hooks:
- id: cargo-deny
- repo: https://github.com/DevinR528/cargo-sort
rev: v1.0.9
hooks:
- id: cargo-sort
args: ["--workspace"]
- repo: local
hooks:
- id: cargo-fmt
name: cargo-fmt
entry: cargo fmt
args:
- "--"
- "--config"
- "group_imports=StdExternalCrate,imports_granularity=Crate,imports_layout=HorizontalVertical"
language: rust
types: [rust]
pass_filenames: false
- id: cargo-check
name: cargo-check
entry: cargo check
language: rust
files: ^(site-builder/|Cargo\.(toml|lock)$)
pass_filenames: false
- id: cargo-test
name: cargo-test
entry: cargo test
language: rust
files: ^(site-builder/|Cargo\.(toml|lock)$)
pass_filenames: false
- id: clippy-with-tests
name: clippy-with-tests
entry: cargo clippy
args: ["--all-features", "--tests", "--", "-D", "warnings"]
language: rust
files: ^(site-builder/|Cargo\.(toml|lock)$)
pass_filenames: false
- id: clippy
name: clippy
entry: cargo clippy
args: ["--all-features", "--", "-D", "warnings"]
language: rust
files: ^(site-builder/|Cargo\.(toml|lock)$)
pass_filenames: false
- id: cargo-doc
name: cargo-doc
entry: env RUSTDOCFLAGS="-D warnings" cargo doc
args: ["--workspace", "--no-deps"]
language: rust
files: ^(site-builder/|Cargo\.(toml|lock)$)
pass_filenames: false