-
Notifications
You must be signed in to change notification settings - Fork 109
/
.pre-commit-config.yaml
49 lines (45 loc) · 1.26 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
exclude: "(.*).pem"
- id: mixed-line-ending
exclude: "(.*).pem"
args: ['--fix=lf']
description: Forces to replace line ending by the UNIX 'lf' character.
- id: check-case-conflict
- id: check-merge-conflict
- id: detect-private-key
- id: requirements-txt-fixer
- id: check-added-large-files
- id: check-symlinks
- id: check-toml
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 3.0.0
hooks:
- id: markdownlint
args: ['-r ~MD013']
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.5
hooks:
- id: remove-crlf
- id: remove-tabs
- repo: https://github.com/doublify/pre-commit-rust
rev: v1.0
hooks:
- id: cargo-check
- id: clippy
- repo: https://github.com/DevinR528/cargo-sort
rev: v1.0.9
hooks:
- id: cargo-sort
- repo: local
hooks:
- id: rustfmt
name: rustfmt
description: Check if all files follow the rustfmt style
entry: cargo fmt --all -- --color always
language: system
pass_filenames: false