forked from rapidsai/cuml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
63 lines (61 loc) · 2.04 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
---
# Copyright (c) 2023, NVIDIA CORPORATION.
repos:
- repo: https://github.com/psf/black
rev: 22.10.0
hooks:
- id: black
files: python/.*
args: [--config, python/pyproject.toml]
- repo: https://github.com/PyCQA/flake8
rev: 5.0.4
hooks:
- id: flake8
args: [--config=python/.flake8]
files: python/.*$
types: [file]
types_or: [python, cython]
exclude: thirdparty
additional_dependencies: [flake8-force]
- repo: local
hooks:
- id: no-deprecationwarning
name: no-deprecationwarning
description: 'Enforce that DeprecationWarning is not introduced (use FutureWarning instead)'
entry: '(category=|\s)DeprecationWarning[,)]'
language: pygrep
types_or: [python, cython]
- id: clang-format
name: clang-format
entry: python ./cpp/scripts/run-clang-format.py
language: python
additional_dependencies: [clang-format==11.1.0]
- id: copyright-check
name: copyright-check
entry: python ./ci/checks/copyright.py --fix-in-place
language: python
pass_filenames: true
additional_dependencies: [gitpython]
- id: include-check
name: include-check
entry: python cpp/scripts/include_checker.py
args:
- cpp/bench
- cpp/comms/mpi/include
- cpp/comms/mpi/src
- cpp/comms/std/include
- cpp/comms/std/src
- cpp/include
- cpp/examples
- cpp/src
- cpp/src_prims
- cpp/test
pass_filenames: false
language: python
- repo: https://github.com/rapidsai/dependency-file-generator
rev: v1.4.0
hooks:
- id: rapids-dependency-file-generator
args: ["--clean"]
default_language_version:
python: python3