-
Notifications
You must be signed in to change notification settings - Fork 54
/
.pre-commit-config.yaml
44 lines (42 loc) · 1.16 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
fail_fast: false
default_language_version:
python: python3
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
hooks:
- id: trailing-whitespace
exclude: ^(.*)\.md$
- id: end-of-file-fixer
- id: check-yaml
exclude: ^(.circleci/recipe|recipe) # conda build recipes are templated
- id: check-added-large-files
- repo: https://github.com/pocc/pre-commit-hooks
rev: v1.1.1
hooks:
- id: clang-format
args: [--style=file, -i]
- id: clang-tidy
args: [--fix, --fix-errors]
- repo: https://github.com/psf/black
rev: 24.2.0
hooks:
- id: black
args: [--config=./pyproject.toml]
- repo: https://github.com/asottile/blacken-docs
rev: v1.12.1
hooks:
- id: blacken-docs
args: [ '--line-length', '100' ]
additional_dependencies: [black]
- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.5
hooks:
- id: forbid-crlf
- id: remove-crlf
# Black does not clear tabs in docstrings
- id: forbid-tabs
files: '.*\.py$'
- id: remove-tabs
files: '.*\.py$'
args: [ '--whitespaces-count', '4' ]