forked from CodSpeedHQ/codspeed-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
25 lines (25 loc) · 849 Bytes
/
.pre-commit-config.yaml
File metadata and controls
25 lines (25 loc) · 849 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
# 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: v2.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/doublify/pre-commit-rust
rev: v1.0
hooks:
- id: fmt
args: [--all, --]
- id: cargo-check
args: [--all-targets]
- id: cargo-check
name: cargo-check[codspeed, all-features]
args: [--all-targets, --all-features, --config, codspeed=true]
- id: clippy
args: [--all-targets, --, -D, warnings]
- id: clippy
name: clippy[codspeed, all-features]
args: [--all-targets, --all-features, --, -D, warnings, --cfg, codspeed]