-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
39 lines (39 loc) · 1.18 KB
/
.pre-commit-config.yaml
File metadata and controls
39 lines (39 loc) · 1.18 KB
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
---
fail_fast: false
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-added-large-files
args: [--maxkb=900]
- id: check-ast
- id: check-case-conflict
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-json
- id: check-merge-conflict
- id: check-yaml
- id: detect-private-key
- id: destroyed-symlinks
- id: end-of-file-fixer
exclude: ^(third_party/)
- id: fix-byte-order-marker
- id: forbid-new-submodules
- id: mixed-line-ending
args: [--fix=lf]
exclude: ^(third_party/)
- id: trailing-whitespace
exclude: ^(third_party/)
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v22.1.0
hooks:
- id: clang-format
files: '\.(c|cc|cpp|h|hpp|cxx|hh|inc)$'
exclude: ^(third_party/)
- repo: local
hooks:
- id: make
name: make
entry: make -j OPTIMIZE=OFF
language: system
pass_filenames: false